import { FromSchema } from 'json-schema-to-ts';
export declare const featureTypeSchema: {
    readonly $id: "#/components/schemas/featureTypeSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["id", "name", "description", "lifetimeDays"];
    readonly properties: {
        readonly id: {
            readonly type: "string";
        };
        readonly name: {
            readonly type: "string";
        };
        readonly description: {
            readonly type: "string";
        };
        readonly lifetimeDays: {
            readonly type: "number";
            readonly nullable: true;
        };
    };
    readonly components: {};
};
export declare type FeatureTypeSchema = FromSchema<typeof featureTypeSchema>;
