import { Language } from 'plus-pro-components/es/locale'; import { Ref } from 'vue'; type MaybeRef = T | Ref; export type TranslatorOption = Record; export type Translator = (path: string, option?: TranslatorOption) => string; export type LocaleContext = { locale: Ref; lang: Ref; t: Translator; }; export declare const buildTranslator: (locale: MaybeRef) => Translator; export declare const translate: (path: string, option: undefined | TranslatorOption, locale: Language) => string; export declare const buildLocaleContext: (locale: MaybeRef) => LocaleContext; export declare const useLocale: (localeOverrides?: Ref) => LocaleContext; export {};