/** * OllamaDriver — port of the Ollama local-model CLI. * * Local OSS model server. Same Codex-shaped stdout protocol as the other * subprocess agents. The default model is configurable; out-of-the-box * Ollama installations typically have llama3.1:8b available. */ import { AbstractJsonLineDriver, type JsonLineProtocolBinding } from "./json-line-driver.js"; export declare const OLLAMA_HARNESS_ID: import("../contracts/ids.js").Brand; export declare class OllamaDriver extends AbstractJsonLineDriver { protected binding(): JsonLineProtocolBinding; }