/** * Driver registry — the only file that knows every platform. Pure lookup: * session assembly (env knobs, prompt, tools) lives in agent/session.ts. */ import type { GuiDriver } from "./driver.ts"; export type DriverOptions = { cdpUrl?: string; }; export declare function createDriver(id: string, opts?: DriverOptions): GuiDriver;