import { Animation, MessageType } from '../../app/types'; interface Props { animation?: Animation; type?: MessageType; description: string; title: string; handleModalAnswer?: (answer: 'yes' | 'no' | 'ok' | 'cancel') => void; } declare function openModal(props: Props): void; export default openModal;