///
import { Size } from "../../types";
export type OmitTextAreaProps = "disabled" | "required" | "size" | "id" | "readOnly";
export interface TextAreaProps extends Omit, OmitTextAreaProps> {
/**
* Control size of TextArea
*/
size: Size;
/**
* Control maxHeight of TextArea
*/
height?: Size;
/**
* Change text of placeholder
*/
placeholder?: string;
/**
* Disabled status
*/
disabled?: boolean;
/**
* Remove validation icon
*/
noValidationIcon?: boolean;
/**
* Optional class for styling purpose
*/
className?: string;
}
/**
* TextArea Form Component
*/
declare const TextArea: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export default TextArea;