import * as React from 'react';
import { FlexPropsType as BasePropsType } from './PropsType';
export interface FlexProps extends BasePropsType {
    alignContent?: 'start' | 'end' | 'center' | 'between' | 'around' | 'stretch';
    onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
    prefixCls?: string;
    className?: string;
    role?: string;
    style?: React.CSSProperties;
}
export default class Flex extends React.Component<FlexProps, any> {
    static Item: any;
    static defaultProps: {
        prefixCls: string;
        align: string;
    };
    render(): JSX.Element;
}
