import type { FC, LegacyRef, TextareaHTMLAttributes } from 'react';
export interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
    innerRef?: LegacyRef<HTMLTextAreaElement>;
    isInvalid?: boolean;
    rows?: number;
}
declare const Textarea: FC<TextareaProps>;
export default Textarea;
