import { FromSchema } from 'json-schema-to-ts';
export declare const instanceAdminStatsSchema: {
    readonly $id: "#/components/schemas/instanceAdminStatsSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["instanceId"];
    readonly properties: {
        readonly instanceId: {
            readonly type: "string";
        };
        readonly timestamp: {
            readonly type: "string";
            readonly format: "date-time";
            readonly nullable: true;
        };
        readonly versionOSS: {
            readonly type: "string";
        };
        readonly versionEnterprise: {
            readonly type: "string";
        };
        readonly users: {
            readonly type: "number";
        };
        readonly featureToggles: {
            readonly type: "number";
        };
        readonly projects: {
            readonly type: "number";
        };
        readonly contextFields: {
            readonly type: "number";
        };
        readonly roles: {
            readonly type: "number";
        };
        readonly groups: {
            readonly type: "number";
        };
        readonly environments: {
            readonly type: "number";
        };
        readonly segments: {
            readonly type: "number";
        };
        readonly strategies: {
            readonly type: "number";
        };
        readonly SAMLenabled: {
            readonly type: "number";
        };
        readonly OIDCenabled: {
            readonly type: "number";
        };
        readonly sum: {
            readonly type: "string";
        };
    };
    readonly components: {};
};
export declare type InstanceAdminStatsSchema = FromSchema<typeof instanceAdminStatsSchema>;
