import { I18n } from "./controller"; export declare class FetchClient implements I18n.Client { constructor(options?: FetchClient.Options); private readonly _path; fetchResources(controller: I18n, language: string): Promise; } export declare namespace FetchClient { interface Options { readonly path?: string; } }