import { FromSchema } from 'json-schema-to-ts';
export declare const cloneFeatureSchema: {
    readonly $id: "#/components/schemas/cloneFeatureSchema";
    readonly type: "object";
    readonly required: readonly ["name"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly replaceGroupId: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type CloneFeatureSchema = FromSchema<typeof cloneFeatureSchema>;
