import * as React from 'react'; import { TextProps } from 'react-native'; interface IProps { label: string | boolean; hint: string | boolean; errors: string | string[] | false; required: boolean; layout: any; layoutProps: any; size: Size; layoutstyle: string | false; fieldTextProps: TextProps; } declare const FieldLayoutView: React.FunctionComponent>; export default FieldLayoutView;