/// import { Overwrite } from '@epam/uui-core'; import { TextAreaProps as uuiTextAreaProps } from '@epam/uui-components'; import * as types from '../types'; type TextAreaMods = types.IHasEditMode & { /** * Defines component size. * @default '36' */ size?: '24' | '30' | '36' | '42' | '48'; }; export interface TextAreaModsOverride { } /** Represents the properties of a TextArea component. */ export interface TextAreaProps extends uuiTextAreaProps, Overwrite { } export declare const TextArea: import("react").ComponentType>; export {}; //# sourceMappingURL=TextArea.d.ts.map