import { FromSchema } from 'json-schema-to-ts';
export declare const setStrategySortOrderSchema: {
    readonly $id: "#/components/schemas/setStrategySortOrderSchema";
    readonly type: "array";
    readonly items: {
        readonly type: "object";
        readonly additionalProperties: false;
        readonly required: readonly ["id", "sortOrder"];
        readonly properties: {
            readonly id: {
                readonly type: "string";
            };
            readonly sortOrder: {
                readonly type: "number";
            };
        };
    };
    readonly components: {};
};
export declare type SetStrategySortOrderSchema = FromSchema<typeof setStrategySortOrderSchema>;
