export declare enum CI_PROVIDERS { GITHUB = "GITHUB", ADO = "ADO", DEFAULT = "DEFAULT" } export type CIInfo = { providerName?: CI_PROVIDERS | null; branch?: string | null; author?: string | null; commitId?: string | null; revisionUrl?: string | null; }; export declare class CIInfoProvider { private static isGitHubActions; static getCIProvider(): string | null; static getCIInfo(): CIInfo; private static isAzureDevOps; private static getGHBranchName; } //# sourceMappingURL=cIInfoProvider.d.ts.map