import { FromSchema } from 'json-schema-to-ts';
export declare const patchesSchema: {
    readonly $id: "#/components/schemas/patchesSchema";
    readonly type: "array";
    readonly items: {
        readonly $ref: "#/components/schemas/patchSchema";
    };
    readonly components: {
        readonly schemas: {
            readonly patchSchema: {
                readonly $id: "#/components/schemas/patchSchema";
                readonly type: "object";
                readonly required: readonly ["path", "op"];
                readonly properties: {
                    readonly path: {
                        readonly type: "string";
                    };
                    readonly op: {
                        readonly type: "string";
                        readonly enum: readonly ["add", "remove", "replace", "copy", "move"];
                    };
                    readonly from: {
                        readonly type: "string";
                    };
                    readonly value: {};
                };
                readonly components: {};
            };
        };
    };
};
export declare type PatchesSchema = FromSchema<typeof patchesSchema>;
