import type { Fetcher } from '../../http/fetcher';
import type { StringMap } from '../../types';
import type { TranslationLoader } from './translation.service';
/**
 * Use `baseUrl` to prefix your language files.
 * Example URL structure:
 * ${baseUrl}/${locale}.json
 */
export declare class FetchTranslationLoader implements TranslationLoader {
    fetcher: Fetcher;
    constructor(fetcher: Fetcher);
    load(locale: string): Promise<StringMap>;
}
