import { type TypographyColors } from './enums'; export type Intensity = '900' | '800' | '700' | '600' | '500' | '400' | '300' | '200' | '100'; export type TypographyColor = keyof typeof TypographyColors; /** * @deprecated * Данные варианты больше не поддерживаются и будут удалены в следующем мажорном релизе. Используйте другие подходящий варианты. * Причина отказа от поддержки: данные варианты отсутствуют в обновленной дизайн-системе. */ export type TypographyLegacyVariant = 'h7' | 'h8' | 'ui' | 'small' | 'code' | 'body2' | 'overline'; export type TypographyVariant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'caption' | 'button' | 'pointer' | 'link' | 'inherit';