#!/usr/bin/env node import type { TerminalPilotRuntime } from "./commands/runtime.js"; /** * Rewrite pilot-level `--json` to toolcraft's `--output json`. * Stop once create-session (and similar) child argv begins so nested tools keep their own `--json`. */ export declare function normalizeArgv(argv: string[]): string[]; export declare function main(argv?: string[], options?: { terminalPilotRuntime?: TerminalPilotRuntime; packageVersion?: string; }): Promise;