import type { FC } from "react"; /** @alpha */ export interface DialogProps extends React.HTMLAttributes { } /** * The Dialog component is a modal dialog box that overlays the current page. It * is based on the native HTML `` element and cannot be moved or * resized. * * @example Basic usage with actions * * ```tsx * <> * * * *
* * This is a dialog * * * * × * * *
* *

Here, have some actions to choose from.

*
* * * * * *
* ; * ``` * * @alpha */ export declare const Dialog: FC; //# sourceMappingURL=Dialog.d.ts.map