import type { OrgComparisonSnapshot } from '../types.js'; import type { OrgClient } from './org-client.js'; interface CompareOptions { externalId?: string; sampleSize: number; limit: number; offset: number; } /** * Diffs record counts between source and target orgs. * Optionally fetches sample records for diverged objects. * * FR-008, SC — post-migration validation. */ export declare function compareOrgs(objects: string[], sourceClient: OrgClient, targetClient: OrgClient, opts: CompareOptions): Promise; export {}; //# sourceMappingURL=org-comparator.d.ts.map