export interface Options {
    key: string;
    location: string;
    prefersLong?: boolean;
    locale?: string;
    fetcher: (url: string, ...options: any[]) => Promise<unknown>;
}
export declare const byLocation: ({ key, location, prefersLong, locale, fetcher, }: Options) => Promise<string>;
export declare const byZone: (zone: string, locale: string) => Promise<string>;
