export declare const TYPOGRAPHY_CLASS_BASE: string; export declare const COMPACT_CLASS_PREFIX = "compact-"; export declare const TEXT_ELEMENT_VALUES: readonly ["h1", "h2", "h3", "h4", "h5", "h6", "p", "span", "strong", "div", "mark", "a", "i", "u", "b", "label", "address", "article", "sub", "sup", "em", "small", "del", "ins", "abbr", "blockquote", "data", "pre"]; export type TextElement = typeof TEXT_ELEMENT_VALUES[number]; export declare const TEXT_ALIGNMENT_VALUES: readonly ["start", "center", "end"]; export type TextAlignment = typeof TEXT_ALIGNMENT_VALUES[number]; export declare const TEXT_WORD_BREAK_VALUES: readonly ["normal", "breakAll", "breakWord"]; export type TextWordBreak = typeof TEXT_WORD_BREAK_VALUES[number]; export declare const TEXT_WEIGHT_VALUES: readonly ["heading-regular", "heading-bold", "body-regular", "body-bold"]; export type TextWeight = typeof TEXT_WEIGHT_VALUES[number]; export declare const TEXT_COLOR_VALUES: readonly ["primary", "secondary", "positive", "warning", "negative", "infoPrimary", "infoSecondary", "selected", "disabled", "primaryInverse", "secondaryInverse", "expressive", "expressiveStronger", "expressiveInverse", "expressiveInverseStronger"]; export type TextColor = typeof TEXT_COLOR_VALUES[number]; export declare const TEXT_KIND_VALUES: readonly ["heading-6xl", "heading-5xl", "heading-4xl", "heading-3xl", "heading-2xl", "heading-xl", "heading-lg", "heading-md", "heading-sm", "heading-xs", "heading-alt-6xl", "heading-alt-5xl", "heading-alt-4xl", "heading-alt-3xl", "heading-alt-2xl", "heading-alt-xl", "heading-alt-lg", "heading-alt-md", "heading-alt-sm", "heading-alt-xs", "body-2xl", "body-xl", "body-lg", "body-md", "body-sm", "body-xs", "detail-xl", "detail-lg", "detail-md", "detail-sm", "detail-xs", "label-2xl", "label-xl", "label-lg", "label-md", "label-sm", "label-xs"]; export type TextKind = typeof TEXT_KIND_VALUES[number]; export declare const DEFAULT_KIND_TO_ELEMENT_MAP: Record;