import { BungieNetResponse } from '../server-response'; export declare type FetchConfig = { url: string; method: string; params?: { [key: string]: any; }; body?: any; }; export declare function rateLimitedRequest(accessToken: string | undefined, config: FetchConfig): Promise>; export declare function manifestRequest(config: FetchConfig): Promise;