import { ReactNode } from 'react'; export declare const Title: import("styled-components").StyledComponent<"div", any, import("@salutejs/plasma-typo").SpacingProps & import("@salutejs/plasma-typo").BreakWordProps, never>; export declare const BigTitle: import("styled-components").StyledComponent<"div", any, import("@salutejs/plasma-typo").SpacingProps & import("@salutejs/plasma-typo").BreakWordProps, never>; export declare const BiggerTitle: import("styled-components").StyledComponent<"div", any, import("@salutejs/plasma-typo").SpacingProps & import("@salutejs/plasma-typo").BreakWordProps, never>; export declare const Label: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const SubTitle: import("styled-components").StyledComponent<"div", any, import("@salutejs/plasma-typo").SpacingProps & import("@salutejs/plasma-typo").BreakWordProps, never>; export declare const Caption: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const TextBoxRoot: import("styled-components").StyledComponent<"div", any, {}, never>; export interface TextPttrnProps { label?: string; title?: string; subTitle?: string; caption?: string; children?: ReactNode; size?: 'm' | 'l'; } /** * Компонент для отображения текста в скомпанованном блоке. */ export declare const TextBox: ({ label, title, subTitle, caption, size, children, ...rest }: TextPttrnProps) => JSX.Element;