/** * HermesDriver — port of the Hermes (NousResearch) agent harness. * * Built on JsonLineDriver. Default model is hermes-4-405b; the protocol * shape is Codex-compatible. */ import { AbstractJsonLineDriver, type JsonLineProtocolBinding } from "./json-line-driver.js"; export declare const HERMES_HARNESS_ID: import("../contracts/ids.js").Brand; export declare class HermesDriver extends AbstractJsonLineDriver { protected binding(): JsonLineProtocolBinding; }