#!/usr/bin/env node import { Command } from "commander"; export declare function parsePositiveInt(value: string): number; export declare function parseNonNegativeInt(value: string): number; type CliDependencies = { loadLspStartServer?: () => Promise<() => void>; loadMcpStartServer?: () => Promise<() => void>; resolveMcpCommand?: () => string[]; }; export declare function createProgram(deps?: CliDependencies): Command; export declare function runCli(argv?: string[], deps?: CliDependencies): Promise; export declare function injectAgentSeparator(argv: string[]): string[]; export {};