import { default as React } from 'react'; export interface TextareaProps extends React.TextareaHTMLAttributes { label?: string; error?: string; className?: string; isValid?: boolean; } export declare function Textarea({ label, error, className, isValid, id: providedId, rows, ...props }: TextareaProps): import("react/jsx-runtime").JSX.Element;