import type { FC } from 'react'; import type { OpaqueSearchInstanceId } from '../../common/models/unique-props'; export interface SearchProviderProps { instanceId?: OpaqueSearchInstanceId | string; searchComponentId?: string; term: string | undefined; fetchBrand: boolean; fetchCategory: boolean; fetchProduct: boolean; fetchQuery: boolean; fetchResults: boolean; } export declare const SearchProvider: FC;