import { FromSchema } from 'json-schema-to-ts';
export declare const strategySchema: {
    readonly $id: "#/components/schemas/strategySchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["name", "displayName", "description", "editable", "deprecated", "parameters"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly displayName: {
            readonly type: "string";
            readonly nullable: true;
        };
        readonly description: {
            readonly type: "string";
        };
        readonly editable: {
            readonly type: "boolean";
        };
        readonly deprecated: {
            readonly type: "boolean";
        };
        readonly parameters: {
            readonly type: "array";
            readonly items: {
                readonly type: "object";
                readonly additionalProperties: false;
                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 StrategySchema = FromSchema<typeof strategySchema>;
