import { BoxProps } from './types.box'; import { GlobalStyleValues } from "../../theme"; export declare type AlignItemsValue = GlobalStyleValues | 'baseline' | 'center' | 'end' | 'first baseline' | 'flex-end' | 'flex-start' | 'last baseline' | 'normal' | 'safe center' | 'space-around' | 'space-between' | 'space-evenly' | 'start' | 'stretch' | 'unsafe center'; export declare type JustifyContentValue = 'baseline' | 'center' | 'end' | 'first baseline' | 'flex-end' | 'flex-start' | 'last baseline' | 'left' | 'right' | 'safe center' | 'space-around' | 'space-between' | 'space-evenly' | 'start' | 'stretch' | 'unsafe center'; export declare type FlexDisplay = 'flex' | 'inline-flex'; export declare type FlexDirection = 'row' | 'column'; export declare type FlexWrap = 'wrap' | 'no-wrap'; export interface FlexStyleProps { alignItems: AlignItemsValue; flexDirection: FlexDirection; flexDisplay: FlexDisplay; flexWrap: FlexWrap; justifyContent: JustifyContentValue; order: number; } export declare type FlexProps = Partial & BoxProps;