export declare type TextTransform = 'capitalize' | 'uppercase' | 'lowercase'; export declare type TextAlign = 'left' | 'center' | 'right' | 'justify'; export declare type FontWeight = 'light' | 'regular' | 'bold' | 'stronger'; export declare type LineHeight = 'close' | 'regular' | 'wild'; export declare type Whitespace = 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap';