export declare class JsonPatchOperation {
    op?: Operation;
    path?: string;
    from?: string;
    value?: any;
}
export declare enum Operation {
    Add = "Add",
    Remove = "Remove",
    Replace = "Replace",
    Move = "Move",
    Copy = "Copy",
    Test = "Test",
    Invalid = "Invalid"
}
