/** * Language Detection * * Maps file extensions to LSP language identifiers. * Browser-safe — no Node.js dependencies. */ /** * Maps file extensions (including the dot) to LSP language identifiers. */ export declare const LANGUAGE_EXTENSIONS: Record; /** * Get the LSP language ID for a file path based on its extension. * Returns undefined if the extension is not recognized. */ export declare function getLanguageId(filePath: string): string | undefined; //# sourceMappingURL=language.d.ts.map