import type { RunnerBackend } from "./types.js"; export interface RunnerConfig { runnerBackend: RunnerBackend; } export declare function resolveRunnerConfig(cwd: string): RunnerConfig;