import React from 'react'; import type { UseInstantSearchApiProps } from '../lib/useInstantSearchApi'; import type { UiState } from 'instantsearch.js'; export type InstantSearchProps = UseInstantSearchApiProps & { children?: React.ReactNode; }; export declare function InstantSearch({ children, ...props }: InstantSearchProps): JSX.Element | null;