import * as React from 'react'; import { TextInput } from 'react-native'; declare type TextInputProps = React.ComponentPropsWithRef & { label?: string; icon?: React.ReactNode; error?: boolean; textHelper?: string; disabled?: boolean; width?: string | number; }; export declare const TextFieldUnderline: React.ForwardRefExoticComponent & React.RefAttributes>; export {};