import type { Animation, MessageType } from '../../app/types'; interface Props { description: string; animation?: Animation; title: string; type: MessageType; handleModalAnswer?: (answer: 'yes' | 'no' | 'ok' | 'cancel') => void; } declare const Modal: ({ description, type, title, animation, handleModalAnswer, }: Props) => import("react/jsx-runtime").JSX.Element; export default Modal;