import { FromSchema } from 'json-schema-to-ts';
export declare const featureTagSchema: {
    readonly $id: "#/components/schemas/featureTagSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["featureName", "tagValue"];
    readonly properties: {
        readonly featureName: {
            readonly type: "string";
        };
        readonly tagType: {
            readonly type: "string";
        };
        readonly tagValue: {
            readonly type: "string";
        };
        readonly type: {
            readonly type: "string";
        };
        readonly value: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type FeatureTagSchema = FromSchema<typeof featureTagSchema>;
