/// import React from 'react'; import { FlexProps } from './PropsType'; export default class Flex extends React.Component { static Item: any; static defaultProps: { prefixCls: string; align: string; onClick: () => void; }; render(): JSX.Element; }