import type { JSONPatchOp } from '../../types'; export declare function isEmptyObject(value: any): boolean; /** * If other empty objects were added to this same path, assume they are maps/hashes/lookups and don't overwrite, allow * subsequent ops to merge onto the first map created. */ export declare function updateEmptyObjects(overPath: string, ops: JSONPatchOp[]): JSONPatchOp[];