import type { FluentVariable } from '@fluent/bundle'; import type { SvelteFluent } from './fluent.js'; export type Translation = { value: string; attributes: Record; }; export declare function getTranslation(fluent: SvelteFluent, id: string, args?: Record, formatAttributes?: boolean): Translation;