export type ModalVariant = 'modal' | 'sheet'; export interface ModalProps { isOpen?: boolean; title: React.ReactNode; titleId?: string; closeModal: () => void; children: React.ReactNode; noPortal?: boolean; variant?: ModalVariant; } declare const Modal: React.FC; export default Modal;