import { FromSchema } from 'json-schema-to-ts';
export declare const projectsSchema: {
    readonly $id: "#/components/schemas/projectsSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["version", "projects"];
    readonly properties: {
        readonly version: {
            readonly type: "integer";
        };
        readonly projects: {
            readonly type: "array";
            readonly items: {
                readonly $ref: "#/components/schemas/projectSchema";
            };
        };
    };
    readonly components: {
        readonly schemas: {
            readonly projectSchema: {
                readonly $id: "#/components/schemas/projectSchema";
                readonly type: "object";
                readonly additionalProperties: false;
                readonly required: readonly ["id", "name"];
                readonly properties: {
                    readonly id: {
                        readonly type: "string";
                    };
                    readonly name: {
                        readonly type: "string";
                    };
                    readonly description: {
                        readonly type: "string";
                    };
                    readonly health: {
                        readonly type: "number";
                    };
                    readonly featureCount: {
                        readonly type: "number";
                    };
                    readonly memberCount: {
                        readonly type: "number";
                    };
                    readonly createdAt: {
                        readonly type: "string";
                        readonly format: "date-time";
                    };
                    readonly updatedAt: {
                        readonly type: "string";
                        readonly format: "date-time";
                        readonly nullable: true;
                    };
                    readonly changeRequestsEnabled: {
                        readonly type: "boolean";
                    };
                    readonly favorite: {
                        readonly type: "boolean";
                    };
                };
                readonly components: {};
            };
        };
    };
};
export declare type ProjectsSchema = FromSchema<typeof projectsSchema>;
