import { type InstallCodeModeHostOptions } from "./install-host.ts"; interface CodeModeHostBinaryRuntime { platform: string; arch: string; packageRoot: string; agentDir: string; install(options: InstallCodeModeHostOptions): Promise; } export declare function codeModeHostBinaryPath(overrides?: Partial): string; export declare function ensureCodeModeHostBinary(signal?: AbortSignal, overrides?: Partial): Promise; export {};