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<Language | undefined>): {
    t: (path: string, option?: TranslatorOption) => string;
    locale: Ref<Language>;
    lang: Ref<string>;
};
