import * as React from 'react'; import { TextProps } from 'react-native'; import { BaseTextInputProps } from './BaseTextInput'; export interface TextInputProps extends BaseTextInputProps { before?: React.ReactNode; after?: React.ReactNode; size?: 'small' | 'medium'; label?: React.ReactNode; help?: React.ReactNode; helpProps?: TextProps; } /** * list */ export declare const TextInput: React.ForwardRefExoticComponent>;