import './index.css'; export type TextAreaProps = { value?: string; onChange?: (value: string) => void; showCount?: boolean; showLabel?: boolean; assistiveText?: string; invalid?: boolean; label?: string; requiredText?: string; disabled?: boolean; subLabel?: React.ReactNode; autoHeight?: boolean; getCount?: (value: string) => number; } & Omit, 'onChange'>; declare const TextArea: import("react").ForwardRefExoticComponent<{ value?: string; onChange?: (value: string) => void; showCount?: boolean; showLabel?: boolean; assistiveText?: string; invalid?: boolean; label?: string; requiredText?: string; disabled?: boolean; subLabel?: React.ReactNode; autoHeight?: boolean; getCount?: (value: string) => number; } & Omit, HTMLTextAreaElement>, "ref">, "onChange"> & import("react").RefAttributes>; export default TextArea; //# sourceMappingURL=index.d.ts.map