interface InfoDeps { /** CLI package version (read from the server package.json at startup). */ cliVersion: string; /** Config bind address (e.g. '127.0.0.1'). */ bind: string; /** Config port (e.g. 7337). */ port: number; /** Token file path (already resolved from config, no tilde expansion yet). */ tokenFile: string; /** Home dir for tilde expansion. Defaults to os.homedir(). */ homeDir?: string; /** Emit machine-readable JSON instead of a human summary. */ json?: boolean; /** stdout writer (for testing). */ stdout?: (s: string) => boolean; /** stderr writer (for testing). */ stderr?: (s: string) => boolean; /** Injectable fetch for testing; defaults to global fetch. */ fetch?: typeof fetch; } export declare function runInfo(deps: InfoDeps): Promise; export {}; //# sourceMappingURL=info.d.ts.map