import type { DialogProps as BaseDialogProps } from "@vertigis/react-ui/Dialog"; /** * Props for the Web dialog component. */ export type DialogProps = BaseDialogProps & { /** * Typically a dialog will only display on the window that has focus. * Setting this flag will ignore this and display the dialog anyway. */ ignoreCurrentFocus?: boolean; }; declare const Dialog: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Dialog;