import type { Writable } from 'node:stream'; import type { AgentRunCliOptions } from './agent-run-cli.js'; export interface AgentRunIo { stdout: Pick & Partial>; stderr: Pick; } export declare function runOneShotAgent(options: AgentRunCliOptions, io: AgentRunIo): Promise;