import type { SdI18nMessages, SdLang } from './interface'; export declare const addI18nMessages: (messages: SdI18nMessages, options?: { overwrite?: boolean; }) => void; export declare const useLocale: (locale: string) => void; export declare const getLocale: () => string; export declare const useI18n: () => { i18nMessage: import("vue").ComputedRef; locale: import("vue").ComputedRef; t: (key: string, ...args: unknown[]) => string; };