import { ComponentProps } from "react";
import type { InputBaseProps } from "../types/baseTypes";
type InputTextAreaProps = InputBaseProps & ComponentProps<"textarea">;
declare function InputTextArea({ name, label, value, onChangeInput, error, className, ...props }: InputTextAreaProps): import("react/jsx-runtime").JSX.Element;
export default InputTextArea;
