import type { FluentVariable } from '@fluent/bundle'; import type { Snippet } from 'svelte'; type $$ComponentProps = { id: string; args?: Record | undefined; children?: Snippet<[{ text: string; attrs: Record; }]>; }; declare const Localized: import("svelte").Component<$$ComponentProps, {}, "">; type Localized = ReturnType; export default Localized;