import { Property } from 'csstype'; import { CSSProperties, ReactNode } from 'react'; import { InferComponentProps } from '../../types.js'; import { DialogContent, DialogInternal, DialogRoot, DialogTrigger } from './dialog.js'; declare const StandardDialogLayout: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; declare const BottomContainer: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components/dist/types.js").Substitute, HTMLDivElement>, { $width?: Property.Width; }>> & string; export declare const StandardDialogFooter: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export declare const StandardDialogBody: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export declare const StandardDialogBodyPadding: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; export declare const StandardDialogCloseIconButton: import("styled-components/dist/types.js").IStyledComponentBase<"web", import("styled-components").FastOmit>>, never>> & string & Omit<(props: InferComponentProps) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component>; export declare const StandardDialogContainer: ({ children, width, contentOverlayStyle, ...props }: Omit, "$width"> & { width?: InferComponentProps["$width"]; contentOverlayStyle?: CSSProperties; }) => import("react/jsx-runtime").JSX.Element; export declare const StandardDialogContent: ({ title, noCloseIcon, children, ...props }: Omit, "title"> & { title?: ReactNode; noCloseIcon?: boolean; children?: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const StandardDialog: ({ open, defaultOpen, onOpenChange, modal, trigger, title, noCloseIcon, children, overlayStyle, onInteractOutside, ...props }: InferComponentProps & InferComponentProps & InferComponentProps & { trigger?: InferComponentProps["children"]; width?: InferComponentProps["width"]; overlayStyle?: CSSProperties; contentOverlayStyle?: CSSProperties; }) => import("react/jsx-runtime").JSX.Element; export {};