import type { HopeLang } from './config'; /** Check if the lang is supported */ export declare const checkLang: (lang?: string) => boolean; export declare const showLangError: (lang: string, plugin?: string) => void; /** Get language from path */ export declare const path2Lang: (path?: string) => HopeLang; /** Get path from language */ export declare const lang2Path: (lang?: string) => string;