import { type App } from 'vue'; import type { Language } from 'element-plus/es/locale'; export type Translater = (key: string) => string; export declare const useLocale: () => { loadLocale: (app?: App) => void | Promise; loadElLocale: () => Promise; t: (key: any) => any; };