import type { Ref } from 'vue'; import type { TranslatorOption } from 'element-plus'; import type { Language } from 'element-plus/es/locale'; export declare function useLocale(localeOverrides?: Ref): { t: (path: string, option?: TranslatorOption) => string; locale: Ref; lang: Ref; };