import { BuildInfo } from '../types'; /** * Utility for gathering information about the build environment */ export declare class BuildInfoUtils { /** * Determines if the current run is in a CI environment * @returns True if running in CI, false otherwise */ static isRunningInPipeline(): boolean; /** * Gets the CI system name * @returns Name of the CI system or 'Unknown' if not determined */ static getPipelineSystem(): string; /** * Gets the build link based on CI system * @returns Build link or empty string if not available */ static getBuildLink(): string; /** * Gets all relevant build information from environment variables * @returns BuildInfo object with all available information */ static getBuildInfo(): BuildInfo; }