import { FromSchema } from 'json-schema-to-ts';
export declare const featureEnvironmentMetricsSchema: {
    readonly $id: "#/components/schemas/featureEnvironmentMetricsSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["environment", "timestamp", "yes", "no"];
    readonly properties: {
        readonly featureName: {
            readonly type: "string";
        };
        readonly appName: {
            readonly type: "string";
        };
        readonly environment: {
            readonly type: "string";
        };
        readonly timestamp: {
            readonly type: "string";
            readonly format: "date-time";
        };
        readonly yes: {
            readonly type: "number";
        };
        readonly no: {
            readonly type: "number";
        };
    };
    readonly components: {};
};
export declare type FeatureEnvironmentMetricsSchema = FromSchema<typeof featureEnvironmentMetricsSchema>;
