import { type CSSProperties } from 'react'; type DialogHeaderRootProps = { /** * Если есть заголовок */ hasTitle: boolean; /** * Если есть кнопка закрытия * */ hasOnClose: boolean; }; export declare const Wrapper: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: import("react").ElementType | undefined; } & DialogHeaderRootProps, import("react").DetailedHTMLProps, HTMLDivElement>, {}>; export type DialogHeaderContentProps = { justifyContent: CSSProperties['justifyContent']; columnSpacing: number; }; export declare const HeaderContent: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: import("react").ElementType | undefined; } & DialogHeaderContentProps, import("react").DetailedHTMLProps, HTMLDivElement>, {}>; export {};