import React, { PropsWithChildren } from 'react'; export declare type ModalProps = { /** If true, modal is opened or visible. */ open: boolean; /** Callback handler for closing of modal. */ onClose?: (event: React.KeyboardEvent | React.MouseEvent) => void; }; export declare const Modal: ({ children, onClose, open }: PropsWithChildren) => JSX.Element | null; //# sourceMappingURL=Modal.d.ts.map