///
import { InputFieldProps } from '../InputField';
export interface TextareaFieldProps extends Omit {
/**
* Minimum height of the textarea
*/
minHeight?: number;
maxHeight?: number;
autoResize?: boolean;
classNameField?: string;
classNameFieldContent?: string;
classNameInput?: string;
onKeyDown?: (e: React.KeyboardEvent) => void;
}
export default function TextareaField(props: TextareaFieldProps): import("react/jsx-runtime").JSX.Element;