import type { LocaleDictionary, LocalesDictionary } from '../types/index'; declare const $dictionary: import("svelte/store").Writable; export declare function getLocaleDictionary(locale: string): LocaleDictionary; export declare function getDictionary(): LocalesDictionary; export declare function hasLocaleDictionary(locale: string): boolean; export declare function getMessageFromDictionary(locale: string, id: string): any; export declare function getClosestAvailableLocale(refLocale: string): string | null; export declare function addMessages(locale: string, ...partials: LocaleDictionary[]): void; declare const $locales: import("svelte/store").Readable; export { $dictionary, $locales };