import React__default, { TextareaHTMLAttributes } from 'react';
interface InputProps extends TextareaHTMLAttributes {
}
interface FormTextareaProps extends InputProps {
id?: string;
name: string;
label?: string;
inputProps?: InputProps & {
ref?: any;
};
classNames?: {
wrapper?: string;
label?: string;
input?: string;
};
}
declare function FormTextarea({ id, name, label, rows, classNames, required, disabled, inputProps, ...rest }: FormTextareaProps): React__default.JSX.Element;
export { FormTextarea, type FormTextareaProps };