import { createUrl } from 'url-fns'; import { AgentOptions } from '../common'; export declare const getFromApiCallWithoutRequestCachingOrRateLimiting: ({ origin, path, queryParams, pathParams, agentOptions: { userAgent, proxyConfig, cookieCache }, }: { origin?: string | undefined; path: string; queryParams?: Parameters[0]['queryParams']; pathParams?: Parameters[0]['pathParams']; agentOptions?: AgentOptions | undefined; }) => Promise; export declare const getFromApiCallWithoutRequestCaching: (args: Parameters[0]) => Promise; export declare const getFromApiCall: (args: Parameters[0]) => Promise;