export declare const DEFAULT_API_URL = "https://api.gauntlet.xyz"; export interface GauntletApiConfig { /** Kong consumer key sent as `x-api-key`. Anonymous access is rate-limited. */ apiKey?: string; /** * Override the API origin. Defaults to `https://api.gauntlet.xyz`. In a * browser this may be a relative path (e.g. a Next.js rewrite like * `/gauntlet-api`), which resolves against the page origin. */ apiUrl?: string; /** Custom fetch implementation (testing, instrumentation). Defaults to global fetch. */ fetch?: typeof fetch; } export type QueryParams = Record; export declare function apiGet(config: GauntletApiConfig, path: string, query?: QueryParams): Promise; //# sourceMappingURL=http.d.ts.map