/// export { Dialog } from "./dialog"; export type { DialogProps } from "./dialog"; export { DialogContent } from "./dialog-content"; export type { DialogContentProps } from "./dialog-content"; export { DialogTrigger } from "./dialog-trigger"; export type { DialogTriggerProps } from "./dialog-trigger"; export { DialogHeading } from "./dialog-heading"; export type { DialogHeadingProps } from "./dialog-heading"; export { DialogDescription } from "./dialog-description"; export type { DialogDescriptionProps } from "./dialog-description"; export { DialogClose } from "./dialog-close"; export type { DialogCloseProps } from "./dialog-close"; export { DialogActionButton, DialogActions, DialogAnimationPresets } from "./style"; export type { DialogAnimationPreset } from "./style"; export declare const DialogPortal: ({ children, id, root, preserveTabOrder, }: { children?: import("react").ReactNode; id?: string | undefined; root?: HTMLElement | null | undefined; preserveTabOrder?: boolean | undefined; }) => JSX.Element;