import { ShjLanguage } from "./types.mjs"; /** * Try to find the language the given code belong to * * @function detectLanguage * @param {string} code The code * @returns {ShjLanguage} The language of the code */ declare const detectLanguage: (code: string) => ShjLanguage; export { detectLanguage };