import { FromSchema } from 'json-schema-to-ts';
export declare const environmentSchema: {
    readonly $id: "#/components/schemas/environmentSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["name", "type", "enabled"];
    readonly properties: {
        readonly name: {
            readonly type: "string";
        };
        readonly type: {
            readonly type: "string";
        };
        readonly enabled: {
            readonly type: "boolean";
        };
        readonly protected: {
            readonly type: "boolean";
        };
        readonly sortOrder: {
            readonly type: "number";
        };
        readonly projectCount: {
            readonly type: "number";
            readonly nullable: true;
        };
        readonly apiTokenCount: {
            readonly type: "number";
            readonly nullable: true;
        };
        readonly enabledToggleCount: {
            readonly type: "number";
            readonly nullable: true;
        };
    };
    readonly components: {};
};
export declare type EnvironmentSchema = FromSchema<typeof environmentSchema>;
