import { BaseModalProps } from '../../common/types/modal'; import { type CSSProperties } from 'react'; export interface DialogProps extends BaseModalProps { /** If provided, sets value of css `height` property */ cssHeight?: CSSProperties['height']; /** If provided, sets value of css `width` property */ cssWidth?: CSSProperties['width']; /** If true, the Dialog fills the entire viewport */ feFullscreen?: boolean; /** If true, the Dialog requires user interaction to close */ feInterruptive?: boolean; } /** * The `` component is a free floating box that can interrupt the application until it is closed. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/619e5667323f84cc6df0bbb1) for design principles. */ declare const Dialog: import("react").ForwardRefExoticComponent>; export default Dialog;