import type { SearchBoxProps as SearchBoxUiComponentProps } from '../ui/SearchBox'; import type { UseSearchBoxProps } from 'react-instantsearch-hooks'; declare type UiProps = Pick; export declare type SearchBoxProps = Omit & UseSearchBoxProps; export declare function SearchBox({ queryHook, ...props }: SearchBoxProps): JSX.Element; export {};