import type { Command } from "commander"; export type RuntimeCliOptions = { runtime?: "host" | "docker"; runtimeImage?: string; detach?: boolean; runnerSync?: "both" | "upload" | "none"; }; export declare function addRuntimeOptions(command: TCommand): TCommand; export declare function pickRuntimeOptions(options: RuntimeCliOptions): RuntimeCliOptions;