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