import { default as React } from 'react'; interface ModalProps extends Omit, 'role' | 'children' | 'title'> { isOpen: boolean; onClose: () => void; title?: string; children: React.ReactNode; footer?: React.ReactNode; size?: 'sm' | 'md' | 'lg' | 'xl' | 'fullScreen'; closeOnBackdrop?: boolean; initialFocus?: React.RefObject; ariaLabel?: string; } declare const Modal: React.FC; export { Modal };