import { CaseCompareResult } from './snapshot'; /** * Compare two point_info_map objects (both in backend format). * Operates at the point key level, then recursively diffs field values. */ export declare function comparePointInfoMaps(snapshot: Record, remote: Record): Pick; export declare function runCompare(caseId: string, remotePointInfoMap: Record): CaseCompareResult; export declare function printCompareResult(result: CaseCompareResult): void;