import type { ServerLookupResult } from './types'; export declare function findServerForExtension(ext: string, filePath?: string): ServerLookupResult; export declare function getLanguageId(ext: string): string; export declare function resolveServerCommand(command: string[], cwd?: string): string[] | null; export declare function isServerInstalled(command: string[]): boolean;