export interface RuntimeCommandOptions { pathToQoderCLIExecutable?: string; cwd?: string; env?: Record; signal?: AbortSignal; timeoutMs?: number; } export interface RuntimeCommandResult { stdout: string; stderr: string; exitCode: number; } /** Run a standalone qodercli subcommand using the packaged runtime carrier. */ export declare function runRuntimeCommand(args: string[], options?: RuntimeCommandOptions): Promise;