export interface IDeployedEnvironment { env: string; variant?: string; } export interface IListDeployedEnvironmentsService { execute(): Promise; } export declare const ListDeployedEnvironmentsService: import("@webiny/di").Abstraction; export declare namespace ListDeployedEnvironmentsService { type Interface = IListDeployedEnvironmentsService; type Result = IDeployedEnvironment[]; }