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) => void; prefixCls?: string; className?: string; role?: string; style?: React.CSSProperties; } export default class Flex extends React.Component { static Item: any; static defaultProps: { prefixCls: string; align: string; }; render(): JSX.Element; }