import { Langs, LangPaths } from "./config"; import { HopeLangI18nConfig } from "../../types"; export declare const checkLang: (lang: string) => boolean; /** get path from language */ export declare const lang2path: (lang: string) => LangPaths | "/"; /** get language from path */ export declare const path2lang: (path: string) => Langs; /** Get locate of certain language */ export declare const getLocale: (lang: string) => HopeLangI18nConfig; export declare const getDefaultLocale: () => HopeLangI18nConfig;