import type { BatchComparisonOptions, CodeBatchComparisonResult } from "../types"; import { CodeSourceEntry } from "../../types"; import { MatchedPair } from "../../matching"; export declare function performBatchCodeComparison(pairs: MatchedPair[], options?: Partial): Promise;