type TypographyUsageWithSize = 'Display_46' | 'Display_40' | 'Display_36' | 'Display_28' | 'Heading_24' | 'Heading_20' | 'Heading_18' | 'Heading_17' | 'Body_15' | 'Body_14' | 'Body_13' | 'Body_12' | 'Caption_11' | 'Caption_10'; type DeprecatedTypographyUsageWithSize = 'Heading_15'; type TypographyUsageWithSizeIncludingDeprecated = TypographyUsageWithSize | DeprecatedTypographyUsageWithSize; type TypographyWeight = 'Bold' | 'SemiBold' | 'Medium' | 'Regular'; export type NonDeprecatedTypography = `${TypographyUsageWithSize}_${TypographyWeight}`; /** @deprecated Use NonDeprecatedTypography variants (Body_15_* instead of Heading_15_*) */ export type DeprecatedTypography = `${DeprecatedTypographyUsageWithSize}_${TypographyWeight}`; export type Typography = NonDeprecatedTypography | DeprecatedTypography; type DeprecatedTextStyles = { /** @deprecated Use Body_15_Bold instead */ Heading_15_Bold: string; /** @deprecated Use Body_15_SemiBold instead */ Heading_15_SemiBold: string; /** @deprecated Use Body_15_Medium instead */ Heading_15_Medium: string; /** @deprecated Use Body_15_Regular instead */ Heading_15_Regular: string; }; export declare const text_style_specs: Record; export declare const text_styles: Record & DeprecatedTextStyles; export {};