import { ReactNode } from 'react'; export declare function TextArea(props: TextAreaProps): JSX.Element; export interface TextAreaProps { style?: any; labelStyle?: any; label?: string; error?: string; value: string; textStyle?: any; invalidStyle?: any; countStyle?: any; descriptionStyle?: any; onChange: (value: string, valid: boolean) => void; placeholder?: string; disabled?: boolean; reg?: RegExp; maxLength?: number; description?: string | ReactNode; showCount?: boolean; returnKeyType?: 'done' | 'go' | 'next' | 'search' | 'send'; }