export declare type FlexDirection = 'row' | 'row-reverse' | 'col' | 'col-reverse'; export declare type FlexJustify = 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly'; export declare type FlexAlignItems = 'start' | 'end' | 'center' | 'baseline' | 'stretch'; export declare type FlexWrap = 'wrap' | 'wrap-reverse' | 'nowrap'; export declare type FlexOrder = number | 'first' | 'last' | 'none'; export declare type AlignSelf = 'start' | 'end' | 'center' | 'auto' | 'stretch'; export declare type Position = 'absolute' | 'relative' | 'fixed'; export declare type Overflow = 'auto' | 'hidden' | 'visible' | 'scroll' | 'clip';