import type { ReactNode } from 'react'; import { type InputBoxProps } from '../InputBox'; export type TextAreaInputProps = Omit & { addon?: ReactNode; error?: string; }; declare const TextAreaInput: import("react").ForwardRefExoticComponent & { addon?: ReactNode; error?: string; } & import("react").RefAttributes>; export default TextAreaInput; //# sourceMappingURL=TextAreaInput.d.ts.map