import * as React from 'react'; export interface FlexProps { direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse'; wrap?: 'nowrap' | 'wrap' | 'wrap-reverse'; justify?: 'start' | 'end' | 'center' | 'between' | 'around'; align?: 'start' | 'center' | 'end' | 'baseline' | 'stretch'; alignContent?: 'start' | 'end' | 'center' | 'between' | 'around' | 'stretch'; prefixCls?: string; className?: string; style?: React.CSSProperties; } export default class Flex extends React.Component { static Item: any; static defaultProps: { prefixCls: string; align: string; }; render(): JSX.Element; }