export declare type RecursivePartial = { [P in keyof T]?: T[P] extends Array ? Array> : T[P] extends object ? RecursivePartial : T[P]; }; export declare type JSONPatchElement = { op: "replace"; path: string; value: any; } | { op: "add"; path: string; value: any; } | { op: "remove"; path: string; } | { op: "copy"; path: string; from: string; } | { op: "move"; path: string; from: string; } | { op: "test"; path: string; value: any; }; export declare type JSONPatch = JSONPatchElement[];