import { MatchableSource, MatchedPair, MatchedSources } from "./types"; export declare function defaultMatchSources(expected: T[], actual: T[]): MatchedSources; export declare function findRemoved(expected: T[], actualSourceById: Map, actualSourceByGroupId: Map, expectedSourceByGroupId: Map): T[]; export declare function findMatching(actual: T[], expectedSourceById: Map, expectedSourceByGroupId: Map, actualSourceByGroupId: Map): MatchedPair[];