import * as React from 'react'; import { TextInput } from 'react-native'; import { Theme } from './../../theme/theme'; declare type TextInputProps = React.ComponentPropsWithRef & { label?: string; height?: number; icon?: React.ReactNode; error?: boolean; textHelper?: string; disabled?: boolean; width?: string | number; fontSize?: number; outlined?: boolean; backgroundColor?: keyof Theme['colors']; borderColor?: keyof Theme['colors']; borderActiveColor?: keyof Theme['colors']; paddingLeft?: number; rightComponent?: React.ReactNode; maxLength?: number; }; export declare const TextField: React.ForwardRefExoticComponent & React.RefAttributes>; export {};