/** * Get the local LSP install directory (~/.config/opencode/hive/lsp) */ export declare function getLspInstallDir(): string; /** * Prepend the local LSP bin directory to PATH */ export declare function prependLspToPath(): void; export interface LspServerResult { name: string; installed: boolean; skipped: boolean; error?: string; } /** * Proactively check and install LSP servers at startup. * Fire-and-forget: callers can await or not. * Never throws — all errors are caught and logged. */ export declare function ensureLspServers(): Promise;