import React from "react"; import { BaseInputProps } from "../BaseInput"; export type TextInputProps = Omit & { defaultValue?: string; value?: string; onValueChange?: (value: string) => void; icon?: React.ElementType | React.JSXElementConstructor; error?: boolean; errorMessage?: string; disabled?: boolean; }; declare const TextInput: React.ForwardRefExoticComponent & { defaultValue?: string | undefined; value?: string | undefined; onValueChange?: ((value: string) => void) | undefined; icon?: React.JSXElementConstructor | React.ElementType | undefined; error?: boolean | undefined; errorMessage?: string | undefined; disabled?: boolean | undefined; } & React.RefAttributes>; export default TextInput;