/** * Re-export the canonical helper from `src/utils/inputSource.ts`. The * telemetry surface is unchanged; the helper now lives next to the rest * of the URL-detection code so it can be shared with the input loaders. */ export { getInputSourceType } from '../utils/inputSource'; /** * Detect if running in a CI environment. * Checks common CI environment variables. */ export declare function isCIEnvironment(): boolean; /** * Categorize an error for telemetry purposes. * Only returns the error category, not the actual error message or details. * * @param error - The error to categorize * @returns Error category string */ export declare function categorizeError(error: unknown): string;