import { ApiParams } from "../api"; export interface HttpMethodOptions { isJson: boolean; isJsonBody: boolean; contentType: string; accept: string; params: { [key: string]: string | number | boolean | Date | undefined; }; isAuthenticated: boolean; skipContentType: boolean; requestCredentials: RequestCredentials; } declare function getHttp(apiParams: ApiParams): (method: string, path: string, body?: any, httpOptions?: Partial) => Promise; export { getHttp, };