import * as React from "react"; import { TextInputProps as RNTextInputProps } from "react-native"; interface TextInputProps extends RNTextInputProps { h?: number; w?: number; m?: any; p?: any; borderColor?: string; focusBorderColor?: string; borderWidth?: number; borderRadius?: any; minW?: number | string; minH?: number | string; suffix?: React.ReactNode; prefix?: React.ReactNode; } declare const Textarea: React.FunctionComponent; export { Textarea };