import { type BlockVersionMolecule } from '../../model/BlockVersion'; /** * @title Размер текста */ export declare type TextSize = '' | 'text-xs' | 'text-s' | 'max-lg:text-s' | 'text-m' | 'text-l' | 'text-xl'; /** * @title Размер текста */ export declare type TitleSize = '' | 'text-h6' | 'text-h5' | 'text-h4' | 'text-h3' | 'text-h2' | 'text-h1' | 'text-h0' | 'text-huge'; /** * @title Цвет текста */ export declare type TextColor = BlockVersionMolecule<'' | 'text-main' | 'text-primary-text' | 'text-primary-main' | 'text-secondary-text' | 'text-secondary-light' | 'text-yellow' | 'text-error' | 'text-white' | 'text-white/80' | 'text-green' | 'text-green-dark'>; /** * @title Выравнивание * @default "" * @enumNames [ * "По умолчанию", * "По левому краю", * "По центру", * "По правому краю" * ] */ export declare type TextAlign = '' | 'text-left' | 'text-center' | 'text-right'; /** * @title Насыщенность шрифта */ export declare type FontWeight = '' | 'font-light' | 'font-normal' | 'font-medium';