import type { ChangeEventHandler, CSSProperties } from 'react'; import { type TextStyle } from '../../utils/TextStylePropsUtils.js'; interface TextAreaProps { className?: string; style?: CSSProperties; fixedSize?: boolean; readOnly?: boolean; textStyle?: TextStyle; defaultValue?: string; value?: string; onChange?: ChangeEventHandler; } export declare function TextArea({ className, fixedSize, readOnly, style, textStyle, defaultValue, value, onChange, }: TextAreaProps): import("react/jsx-runtime").JSX.Element; export {};