declare const apiCall: import("axios").AxiosInstance; type ApiCallConfig = Partial<{ errorHandling: 'throw' | 'log'; body: Record; }> & Parameters[1]; export declare function makeApiCall(ctx: Ctx, url: string, config?: ApiCallConfig): Promise; export {};