import type { RequestOption } from "./requestOption.js"; import type { ResponseHandler } from "./responseHandler.js"; type originalCallType = (q?: queryParametersType, h?: headersType, o?: RequestOption[], responseHandler?: ResponseHandler) => Promise; type originalCallWithBodyType = (requestBody: requestBodyType, q?: queryParametersType, h?: headersType, o?: RequestOption[], responseHandler?: ResponseHandler) => Promise; /** This class can be used to wrap a request using the fluent API and get the native response object in return. */ export declare class NativeResponseWrapper { static CallAndGetNative: (originalCall: originalCallType, q?: queryParametersType, h?: headersType, o?: RequestOption[]) => Promise; static CallAndGetNativeWithBody: (originalCall: originalCallWithBodyType, requestBody: requestBodyType, q?: queryParametersType, h?: headersType, o?: RequestOption[]) => Promise; } export {}; //# sourceMappingURL=nativeResponseWrapper.d.ts.map