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