import * as React from 'react'; declare type Props = { children: React.ReactNode; open: boolean; onClose: () => void; }; /** * * @param props * @constructor */ declare const Dialog: (props: Props) => JSX.Element; export default Dialog;