import { type ReactNode } from 'react'; interface ModalProps { isOpen: boolean; onClose: () => void; title?: string | React.ReactNode; children: ReactNode; showCloseButton?: boolean; closeOnBackdropClick?: boolean; closeOnEscape?: boolean; maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl'; position?: 'fixed' | 'absolute'; } export declare function Modal({ isOpen, onClose, title, children, showCloseButton, closeOnBackdropClick, closeOnEscape, maxWidth, position, }: ModalProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Modal.d.ts.map