import type { FluentBundle, FluentVariable } from '@fluent/bundle'; type Options = { onError?: (msg: string) => void; }; export type SvelteFluent = { readonly bundles: FluentBundle[]; readonly options: Options; localize(id: string, args?: Record): string; }; export declare function createSvelteFluent(bundles: FluentBundle[], options?: Options): SvelteFluent; export {};