/** * RFC 6902 JSON Patch implementation. * * Applies a JSON Patch document (array of operations) to a JSON document. * Supports add, remove, replace, and test operations. */ /** * Apply an RFC 6902 patch document to a JSON document. * Returns the patched JSON as a string. */ export declare function rfc6902Apply(doc: string, patch: string): string; //# sourceMappingURL=json-patch.d.ts.map