import { TextareaHTMLAttributes, default as React } from 'react'; export interface TextareaProps extends TextareaHTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Controls the resize property of the textare (e.g.: none, vertical, horizontal, both). * Default is 'both'. */ resize?: 'none' | 'vertical' | 'horizontal' | 'both'; } declare const Textarea: React.ForwardRefExoticComponent>; export default Textarea; //# sourceMappingURL=Textarea.d.ts.map