import type { createI18n } from 'vue-i18n'; export declare type TranslateFunc = (key: string) => string; export declare type SetLocaleFunc = (local: string) => void; export interface YunzaiI18n { instance: ReturnType; translate: TranslateFunc; setLocale: SetLocaleFunc; } export declare function hashTranslated(path: string): boolean;