import { type RunnerArgs } from '@code-pushup/models'; export declare function isCI(): boolean; export declare function isEnvVarEnabled(name: string): boolean; export declare function coerceBooleanValue(value: unknown): boolean | undefined; type RUNNER_ARGS_ENV_VAR = 'CP_PERSIST_OUTPUT_DIR' | 'CP_PERSIST_FILENAME' | 'CP_PERSIST_FORMAT' | 'CP_PERSIST_SKIP_REPORTS'; type RunnerEnv = Record; export declare function runnerArgsToEnv(config: RunnerArgs): RunnerEnv; export declare function runnerArgsFromEnv(env: Partial): RunnerArgs; export {};