import { FromSchema } from 'json-schema-to-ts';
export declare const projectEnvironmentSchema: {
    readonly $id: "#/components/schemas/projectEnvironmentSchema";
    readonly type: "object";
    readonly additionalProperties: false;
    readonly required: readonly ["environment"];
    readonly properties: {
        readonly environment: {
            readonly type: "string";
        };
        readonly changeRequestsEnabled: {
            readonly type: "boolean";
        };
    };
    readonly components: {};
};
export declare type ProjectEnvironmentSchema = FromSchema<typeof projectEnvironmentSchema>;
