export type JsonDiffEntryType = 'added' | 'removed' | 'changed'; export interface JsonDiffEntry { path: string; type: JsonDiffEntryType; oldValue?: unknown; newValue?: unknown; } export declare function jsonDiff(oldObj: unknown, newObj: unknown, basePath?: string): JsonDiffEntry[];