import type { AgentMessage, AgentRunArgs, AgentRunner } from './agent-runner.js'; /** Pure NDJSON parser — exported for unit testing against fixture lines * (copilot-runner.test.ts). */ export declare function parseCopilotEvents(lines: string[]): { texts: string[]; rawTexts: string[]; }; export declare class CopilotAgentRunner implements AgentRunner { private copilotBin?; constructor(copilotBin?: string | undefined); run(args: AgentRunArgs): AsyncIterable; private runTurn; } //# sourceMappingURL=copilot-runner.d.ts.map