import type { ViewStyle, TextStyle } from 'react-native'; interface TextareaProps { value?: string; placeholder?: string; label?: string; rows?: number; disabled?: boolean; readOnly?: boolean; style?: ViewStyle & TextStyle; _tokens?: Record; onChange?: (value: string) => void; testID?: string; } export declare function Textarea({ value, placeholder, label, rows, disabled, readOnly, style, _tokens, onChange, testID }: TextareaProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=textarea.d.ts.map