import React from 'react'; import { OverlayProps } from '@react-aria/overlays'; import { ModalType } from './types'; declare type Props = { onClose?: () => void; children?: React.ReactNode | React.ReactNode[]; variant?: ModalType; }; export declare const ModalDialog: (props: Props & OverlayProps) => JSX.Element; export {}; //# sourceMappingURL=ModalDialog.d.ts.map