export declare namespace EnvironmentContracts { interface IEnvironmentCloningStateResponseContract { cloning_state: 'in_progress' | 'failed' | 'done'; } interface IDeleteEnvironmentResponseContract { } interface IEnvironmentResponseContract { id: string; name: string; is_production: boolean; } interface IModifyEnvironmentResponseContract extends IEnvironmentResponseContract { } interface ICloneEnvironmentResponseContract { id: string; management_api_key: string; delivery_preview_api_key: string; secured_delivery_api_key: string; } interface IMarkEnvironmentAsProductionResponseContract { } }