import * as React from 'react'; import { GrowthBehavior, ErrorType, Themeable } from '@workday/canvas-kit-react-common'; export interface TextAreaProps extends Themeable, GrowthBehavior, React.TextareaHTMLAttributes { disabled?: boolean; error?: ErrorType; inputRef?: React.Ref; onChange?: (e: React.ChangeEvent) => void; placeholder?: string; readOnly?: boolean; resize?: TextAreaResizeDirection; value?: any; } export declare enum TextAreaResizeDirection { None = "none", Both = "both", Horizontal = "horizontal", Vertical = "vertical" } declare class TextArea extends React.Component { static ErrorType: typeof ErrorType; static ResizeDirection: typeof TextAreaResizeDirection; render(): JSX.Element; } export default TextArea; //# sourceMappingURL=TextArea.d.ts.map