import type { Snippet } from 'svelte'; import { type LocaleCode, type UiMessages } from '../../../utils/i18n.svelte.js'; interface I18nProviderProps { locale?: LocaleCode; /** Partial overrides merged over the built-in dictionary */ messages?: Partial; children?: Snippet; } declare const I18nProvider: import("svelte").Component; type I18nProvider = ReturnType; export default I18nProvider;