export interface LanguageServerConfig { id: string; label: string; languageId: string; command: string; args: string[]; extensions: string[]; rootMarkers: string[]; initializationOptions?: Record; } export declare const LANGUAGE_SERVERS: LanguageServerConfig[]; export declare function languageIdForPath(filePath: string): string; export declare function serverForPath(filePath: string): LanguageServerConfig | undefined; //# sourceMappingURL=registry.d.ts.map