/// import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { FlexPropsType } from './PropsType'; export interface FlexProps extends FlexPropsType { onPress?: () => void; onLongPress?: () => void; onPressIn?: () => void; onPressOut?: () => void; style?: StyleProp; } export default class Flex extends React.Component { static Item: any; static defaultProps: { direction: string; wrap: string; justify: string; align: string; }; render(): JSX.Element; }