import type { ApplyJSONPatchOptions, JSONPatchCustomTypes, JSONPatchOp } from './types'; export declare function applyPatch(object: any, patches: JSONPatchOp[], opts?: ApplyJSONPatchOptions, types?: JSONPatchCustomTypes): any;