#!/usr/bin/env node import { type DiscoveredCodexConfig } from "./codex.js"; interface CliIo { env: Record; stdout: (text: string) => void; stderr: (text: string) => void; stdin?: () => Promise; discoverCodex?: () => Promise; } export declare function runCli(args: string[], io: CliIo): Promise; export {};