import React, { FC } from "react"; import { DialogProps } from "@material-ui/core/Dialog"; export interface Props extends Omit { /** Fired when the user clicks the X button. */ onClose?: () => void; /** Passed through to the underlying `Dialog` component. */ fullScreen?: boolean; /** The title of the dialog */ title?: string | React.ReactElement; /** Dialog actions to display */ actions?: React.ReactNode; } /** * A full-screen dialog with an optional close button (pass a function to `onClose` prop to display it). * Extends [`@material-ui/core/Dialog`](https://material-ui.com/api/dialog/). */ export declare const Dialog: FC; //# sourceMappingURL=index.d.ts.map