import type { SearchBoxProps as SearchBoxUiComponentProps } from '../ui/SearchBox'; import type { UseSearchBoxProps } from 'react-instantsearch-hooks'; type UiProps = Pick; export type SearchBoxProps = Omit> & UseSearchBoxProps & { /** * Whether to trigger the search only on submit. * @default true */ searchAsYouType?: boolean; translations?: Partial; }; export declare function SearchBox({ queryHook, searchAsYouType, translations, ...props }: SearchBoxProps): JSX.Element; export {};