/// import { FormInputState } from '../form/types'; import { EventData } from '../instrumentation'; import { MQ } from '../utils'; import { LogicalProps } from '../utils/logical-properties'; export interface TextAreaProps extends React.TextareaHTMLAttributes, EventData { size?: 'small' | 'medium' | 'large'; state?: FormInputState; resize?: 'none' | 'vertical' | 'horizontal' | 'both'; overrides?: { width?: MQ; height?: MQ; maxWidth?: MQ; maxHeight?: MQ; minWidth?: MQ; minHeight?: MQ; stylePreset?: MQ; typographyPreset?: MQ; } & LogicalProps; } //# sourceMappingURL=types.d.ts.map