/** * Handle short-circuit CLI flags (--help / --version / --init ). * Returns true if a flag was handled (caller should exit / skip server boot). * * NOTE: this function calls `process.exit()` on its own for the matched * flag — historically the index.ts entry point did the same to keep * `npx -y claude-in-mobile --help` from blocking on the stdio MCP loop * (see issue #44). The boolean return is for typing convenience; in * practice control never reaches the caller when a flag is matched. */ export declare function runCliIfRequested(argv: readonly string[], version: string): boolean; //# sourceMappingURL=cli.d.ts.map