export declare const LINE_HEIGHTS: { readonly S: string; readonly M: string; readonly Normal: "normal"; readonly L: string; readonly XL: string; readonly XXL: string; }; export declare enum CapUILineHeight { S = "S", M = "M", Normal = "normal", L = "L", XL = "L", XXL = "XL" } export type ThemeLineHeightsValues = keyof typeof LINE_HEIGHTS | (string & {}) | (number & {});