import { FromSchema } from 'json-schema-to-ts';
export declare const upsertStrategySchema: {
    readonly $id: "#/components/schemas/upsertStrategySchema";
    readonly type: "object";
    readonly required: readonly ["name"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly description: {
            readonly type: "string";
        };
        readonly editable: {
            readonly type: "boolean";
        };
        readonly parameters: {
            readonly type: "array";
            readonly items: {
                readonly type: "object";
                readonly properties: {
                    readonly name: {
                        readonly type: "string";
                    };
                    readonly type: {
                        readonly type: "string";
                    };
                    readonly description: {
                        readonly type: "string";
                    };
                    readonly required: {
                        readonly type: "boolean";
                    };
                };
            };
        };
    };
    readonly components: {};
};
export declare type UpsertStrategySchema = FromSchema<typeof upsertStrategySchema>;
