/** @jsxRuntime classic */ /** @jsx jsx */ import { InputHTMLAttributes } from 'react'; import type { SizeType, WidthType } from './types'; 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 | undefined; size?: SizeType | undefined; width?: WidthType | undefined; onChange?: import("react").ChangeEventHandler | undefined; value?: NonNullable | undefined; } & Omit & import("react").RefAttributes>; export {}; //# sourceMappingURL=TextArea.d.ts.map