import React from 'react'; import { Props as BackDropProps } from '../BackDrop/BackDrop'; import { Props as PortalProps } from '../Portal'; export declare type Props = { open: boolean; onClose?: Function; disablePortal?: boolean; blurredNodeSelector?: string; } & BackDropProps & PortalProps & React.HTMLAttributes; declare const Modal: React.FC; export default Modal; //# sourceMappingURL=Modal.d.ts.map