/**
 * Simple JSON Patch-like utility for applying operations to objects
 * Supports add, remove, and replace operations with JSONPath-like syntax
 */
export declare function applyPatch(target: any, operations: Array<{
    op: string;
    path: string;
    value?: any;
}>): any;
