import * as react from 'react'; import { TextInputProps, TextStyle, TextInput } from 'react-native'; type TextareaSize = "sm" | "md" | "lg"; interface TextareaProps extends Omit { value?: string; onChange?: (value: string) => void; size?: TextareaSize; invalid?: boolean; disabled?: boolean; /** Visible rows at rest (sets minHeight). Default 3. */ rows?: number; style?: TextStyle; } declare const Textarea: react.ForwardRefExoticComponent>; export { Textarea, type TextareaProps, type TextareaSize };