import { ReactNode } from 'react'; interface Props { outRef?: HTMLElement; width?: number; title: ReactNode; content?: ReactNode; onCancel?: () => void; footer?: ReactNode; visible?: boolean; } declare function DialogueModal({ title, content, width, onCancel, visible, footer, outRef, }: Props): JSX.Element; export default DialogueModal;