import { LANGUAGES } from '../../constants'
type Language = (typeof LANGUAGES)[number]
/**
 * Get the language of a file based on its extension.
 *
 * @param filePath - The path to the file.
 * @returns The language of the file or 'javascript' if the extension is not
 *   supported.
 */
export declare function getLanguageByFileName(filePath: string): Language
export {}
