import type { TextareaHTMLAttributes, TextareaResize } from '../../types'; import type { FieldProps } from '../Field'; export interface TextAreaProps extends Omit, TextareaHTMLAttributes { /** * Изменение размера текстового поля. */ resize?: TextareaResize; } /** * Base textarea. */ export declare const TextArea: import("styled-components").StyledComponent<"textarea", any, Pick, never>; //# sourceMappingURL=TextArea.d.ts.map