export type TypographyWeight = { [key: string]: string; 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; normal: string; bold: string; }; export type Typography = /** * @deprecated **/ | 'headline_default' | 'headline_l' | 'headline_xl' | 'title_default' | 'title_xs' | 'title_s' | 'header_default' | 'paragraph_default' | 'paragraph_bold' | 'paragraph_italic' | 'label_xxs' | 'action_s' /** * end **/ | 'headline_l_bold' | 'headline_default_bold' | 'header_m_bold' | 'header_default_bold' | 'header_s_semibold' | 'header_xs_semibold' | 'body_default_regular' | 'body_default_regularstrikethrought' | 'description_default_regular' | 'description_default_regularstrikethrought' | 'description_xs_regular' | 'description_xs_regularstrikethrought' | 'label_default_medium' | 'label_s_medium' | 'label_xs_medium' | 'action_default_bold' | 'action_s_bold' | 'action_xs_bold' | 'action_xxs_bold';