import { QuaternaryTypes } from '../utils'; import { InputHTMLAttributes, ReactNode } from 'react'; export interface TextAreaInputProps extends InputHTMLAttributes { label?: ReactNode; iconLeft?: ReactNode; iconRight?: ReactNode; sizes?: "small" | "medium" | "large" | undefined; error?: boolean | undefined; skeleton?: boolean | undefined; helperText?: ReactNode; variant?: QuaternaryTypes; rows?: number; maxLength?: number; } export declare const InputTextArea: import('react').ForwardRefExoticComponent>;