export interface PatchOperation { from?: string; op: PatchOperationOpEnum; path: string; value?: object; } export declare const PatchOperationOpEnum: { readonly Add: "ADD"; readonly Replace: "REPLACE"; readonly Remove: "REMOVE"; readonly Move: "MOVE"; }; export type PatchOperationOpEnum = (typeof PatchOperationOpEnum)[keyof typeof PatchOperationOpEnum];