export interface IProjectInfoServiceResult { webiny: { debugEnabled: boolean; featureFlags: Record; version: string; }; wcp: { projectId: string; usingProjectEnvironmentApiKey: boolean; }; host: { os: string; nodeJs: string; npm: string; npx: string; yarn: string; isCI: boolean; }; pulumi: { "@pulumi/pulumi": string; "@pulumi/aws": string; secretsProvider: string; usingPassword: boolean; }; } export interface IProjectInfoService { execute(): Promise; } export declare const ProjectInfoService: import("@webiny/di").Abstraction; export declare namespace ProjectInfoService { type Interface = IProjectInfoService; type Result = IProjectInfoServiceResult; }