import { ReactNode } from 'react'; type Props = { isOpen: boolean; close?: () => void; title: ReactNode; footer?: ReactNode; children: ReactNode; subTitle?: ReactNode; role?: 'dialog' | 'alertdialog'; }; declare const Modal: ({ isOpen, close, title, children, footer, subTitle, role, ...rest }: Props) => import("react").ReactPortal | null; export { Modal }; //# sourceMappingURL=Modal.component.d.ts.map