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