/** * The general purpose Dialog component. * This component extends the props of `
` element with `role="dialog"`. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog */ export declare const Dialog: import("react").ForwardRefExoticComponent<{ children?: import("react").ReactNode; title: import("react").ReactNode; open?: boolean; onClose?: () => void; actionSlot?: import("react").ReactNode; size?: import("../../styled-system/recipes").DialogSlotRecipeVariant["size"]; hideCloseButton?: boolean; closeButtonProps?: Pick, "aria-label">; targetDOMNode?: HTMLElement | null; enableAutoUnmount?: boolean; disableBackdropClose?: boolean; customFocusElement?: import("react").RefObject | HTMLElement | null; } & Omit, HTMLDivElement>, "ref">, "open" | "onClose"> & { ref?: (import("react").RefObject | import("react").RefCallback | null) | undefined; } & import("react").Attributes>;