export declare type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
export declare type FlexWrap = "nowrap" | "wrap" | "wrap-reverse";
export declare type FlexJustify = "start" | "center" | "end" | "space-around" | "space-between";
export declare type FlexAlign = "start" | "center" | "end" | "baseline" | "stretch";
export declare type FlexGutter = number | [number, number];
