export type TTextSize = 'xs' | 'sm' | 'md' | 'lg'; export declare const HEADING_SIZES: readonly ["xl", "lg", "md", "sm", "xs", "2xs", "3xs"]; export type THeadingSize = (typeof HEADING_SIZES)[number]; export type TDisplaySize = 'sm' | 'md' | 'lg' | 'max'; export type TTextAlign = 'left' | 'right' | 'center' | 'justify';