import * as React from "react"; interface IProps extends React.TextareaHTMLAttributes { error?: string; label?: string; height?: string; } export declare const TextareaInput: ({ error, label, height, ...rest }: IProps) => JSX.Element; export {};