import { FidelityMatchingType } from "../types"; import { MatchableSource, MatchedSources } from "./types"; export * from "./types"; export declare function matchSources(expected: T[], actual: T[], options?: { strategy?: FidelityMatchingType; }): MatchedSources;