/** * MemoireNativeDriver — port of the Mémoire-native agent harness. * * Mémoire's own self-hosted agent path. Routes requests to internal MCP * tools and design-system operations rather than to a third-party CLI. * Built on JsonLineDriver because the runtime sidecar emits the same * Codex-shaped event protocol when serving native requests. */ import { AbstractJsonLineDriver, type JsonLineProtocolBinding } from "./json-line-driver.js"; export declare const MEMOIRE_NATIVE_HARNESS_ID: import("../contracts/ids.js").Brand; export declare class MemoireNativeDriver extends AbstractJsonLineDriver { protected binding(): JsonLineProtocolBinding; }