import type { Resolver } from '..'; import type { SearchArgs } from '../clients/search'; import { ProductSearchResult } from '../clients/search/types/ProductSearchResult'; export type Root = { searchArgs: Omit; productSearchPromise: Promise; }; export declare const StoreSearchResult: Record>;