import { IHttpVerb, IUrl } from '../../..'; export interface IHttpCall { baseUrl: IUrl; method: IHttpVerb; queryParams?: any; bodyParams?: any; pathParams?: any; headers?: any; formData?: any; } export declare const isIHttpCall: (d: any) => d is IHttpCall;