import { ValidationStatus, ScrimProps } from "@jpmorganchase/uitk-core"; import { HTMLAttributes } from "react"; import "./Dialog.css"; export interface DialogProps extends HTMLAttributes { autoFocusRef?: ScrimProps["autoFocusRef"]; height?: string | number; onClose?: () => void; open?: boolean; status?: ValidationStatus; width?: string | number; enableBackdropClick?: boolean; disablePortal?: boolean; } /** * The Dialog is a window that contains text and interactive components. * By default, Dialog is non-modal, but supports modal behaviour as well. */ export declare const Dialog: import("react").ForwardRefExoticComponent>;