import type { AtlasSearchStage } from './aggregation'; import { type SearchIndexRegistry } from './search-index-registry'; export type AtlasSearchStageDeps = { resolveFieldPath: (doc: Record, path: string) => unknown; searchIndexRegistry: SearchIndexRegistry | null; }; export declare function runAtlasSearchStage(docs: Record[], stage: AtlasSearchStage, deps: AtlasSearchStageDeps): Record[]; //# sourceMappingURL=aggregation-atlas-search.d.ts.map