#!/usr/bin/env bun export interface CliDependencies { startServer?: () => Promise; startHttpServer?: (options?: { port?: number; host?: string; }) => Promise; tryStdioBridge?: () => Promise; runSetupCli?: (rawArgs: string[]) => Promise; registerStdinEndHandler?: (handler: () => void) => void; shutdownServer?: () => void; } export declare function runCli(rawArgs?: string[], deps?: CliDependencies): Promise; //# sourceMappingURL=cli.d.ts.map