export declare const textSizes: readonly ["xs", "sm", "base", "lg", "xl", "2xl", "3xl", "4xl", "5xl", "6xl"]; export declare type TEXT_SIZES = keyof { [key in typeof textSizes[number]]: string; }; export declare const fontWeights: readonly ["hairline", "thin", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"]; export declare type FONT_WEIGHTS = keyof { [key in typeof fontWeights[number]]: string; }; export declare const textAligns: readonly ["left", "right", "center"]; export declare type TEXT_ALIGNS = keyof { [key in typeof textAligns[number]]: string; }; export declare const leadings: readonly ["none", "tight", "snug", "normal", "relaxed", "loose"]; export declare type LEADINGS = keyof { [key in typeof leadings[number]]: string; }; export declare const trackings: readonly ["tighter", "tight", "wide", "normal", "wider", "widest"]; export declare type TRACKINGS = keyof { [key in typeof trackings[number]]: string; };