/** @jsxRuntime classic */ /** @jsx jsx */ import { type InputHTMLAttributes } from 'react'; import type { SizeType, WidthType } from "./types.js"; type InputProps = InputHTMLAttributes; export type TextAreaProps = { invalid?: boolean; size?: SizeType; width?: WidthType; onChange?: NonNullable; value?: NonNullable; } & Omit; export declare const TextArea: import("react").ForwardRefExoticComponent<{ invalid?: boolean; size?: SizeType; width?: WidthType; onChange?: NonNullable; value?: NonNullable; } & Omit & import("react").RefAttributes>; export {}; //# sourceMappingURL=TextArea.d.ts.map