import { JsonPatchOp } from "./apiScenarioTypes"; export interface DiffPatchOptions { includeOldValue?: boolean; minimizeDiff?: boolean; } export declare const jsonPatchApply: (obj: any, ops: JsonPatchOp[]) => any; export declare const getJsonPatchDiff: (from: any, to: any, opts?: DiffPatchOptions) => JsonPatchOp[]; export declare const getObjValueFromPointer: (obj: any, pointer: string) => any; export declare const getJsonPointer: (input: string[], additional?: string) => string; //# sourceMappingURL=diffUtils.d.ts.map