export declare type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | '8xl' | '9xl'; export declare type Color = 'primary' | 'secondary' | 'regular' | 'info' | 'success' | 'warning' | 'error' | 'none'; export declare type Weight = 'thin' | 'extralight' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black'; export declare type Align = 'left' | 'center' | 'right' | 'justify'; export declare type Family = 'mono' | 'sans' | 'serif'; export declare type Pad = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | null;