export declare enum AzDoOp { Add = "add" } export interface JsonFieldPatch { op: AzDoOp; path: string; from?: string; value: unknown; } export declare type AzDOJsonPatchDocument = JsonFieldPatch[];