import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { FlexItemPropsType } from './PropsType'; export interface FlexItemProps extends FlexItemPropsType { flex?: number; onPress?: () => void; onLongPress?: () => void; onPressIn?: () => void; onPressOut?: () => void; style?: StyleProp; } export default class FlexItem extends React.Component { static defaultProps: { flex: number; }; render(): React.JSX.Element; }