@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
13 lines (12 loc) • 564 B
TypeScript
/// <reference types="react" />
declare const TextArea: import("react").ForwardRefExoticComponent<{
error?: string | undefined;
isError?: boolean | undefined;
helpText?: string | undefined;
showErrorText?: boolean | undefined;
resizable?: boolean | undefined;
_t?: ((text: string) => string) | undefined;
useT?: boolean | undefined;
onChangeValue?: ((value: string) => void) | undefined;
} & import("react").TextareaHTMLAttributes<HTMLTextAreaElement> & import("react").RefAttributes<HTMLTextAreaElement>>;
export default TextArea;