import { type HeadlineCommonProps } from '../../model/HeadlineType'; import { type RichTextProps } from '../../ui-kit/RichText/RichTextProps'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; /** * @title Размер иконки * @enumNames ["Нет", "Маленькая"] */ declare type TextBlockIconVersion = 'none' | 'small'; /** * @title Текстовый блок */ export declare type TextBlockContent = UniBlockContent & HeadlineCommonProps & RichTextProps & { iconVersion?: TextBlockIconVersion; }; export {};