export declare namespace EnvironmentModels { class EnvironmentCloningStateModel { cloningState: string; constructor(cloningState: string); } interface IModifyEnvironmentData { op: 'rename_environment'; value: string; } class EnvironmentModel { id: string; name: string; isProduction: boolean; constructor(id: string, name: string, isProduction: boolean); } interface ICloneEnvironmentData { name: string; roles_to_activate?: string[]; } class CloneEnvironmentModel { id: string; managementApiKey: string; deliveryPreviewApiKey: string; securedDeliveryApiKey: string; constructor(id: string, managementApiKey: string, deliveryPreviewApiKey: string, securedDeliveryApiKey: string); } interface IMarkEnvironmentAsProductionData { enable_webhooks: boolean; } }