import { FunctionComponent, TextareaHTMLAttributes } from "react";
import { BindingProps } from "../../types";
declare type NativeTextareaProps = TextareaHTMLAttributes;
declare type TextareaProps = NativeTextareaProps & BindingProps;
declare const Textarea: FunctionComponent;
export default Textarea;