export { buildYargs, setArgs, setConfig, outputResults, spawnCommand, setMeta, getVersionData, log, logLevelEnabled, getResolvedTestsFromEnv, reportResults, reporters, registerReporter, isDebugRequested, }; declare function isDebugRequested(): boolean; declare function logLevelEnabled(level: string, config?: any): boolean; declare function log(message: any, level?: string, config?: any): void; declare function buildYargs(args: any): any; declare function setArgs(args: any): any; declare function getResolvedTestsFromEnv(config?: any): Promise<{ apiConfig: any; resolvedTests: any; } | null>; declare function setConfig({ configPath, args }: { configPath?: any; args: any; }): Promise; declare const reporters: Record Promise>; declare function registerReporter(name: string, reporterFunction: any): boolean; declare function reportResults({ apiConfig, results }: { apiConfig: any; results: any; }): Promise; declare function outputResults(config: any | undefined, outputPath: any, results: any, options?: any): Promise; declare function spawnCommand(cmd: string, args?: string[]): Promise<{ stdout: string; stderr: string; exitCode: unknown; }>; declare function setMeta(): void; declare function getVersionData(): any; //# sourceMappingURL=utils.d.ts.map