import { ApiParams } from "../api"; export interface HttpFileOptions { isJson: boolean; accept: string; params: { [key: string]: string | number | boolean | Date | undefined; }; isAuthenticated: boolean; requestCredentials: RequestCredentials; } declare function getHttpFile(apiParams: ApiParams): (method: string, path: string, file: { buffer: Buffer; bufferName: string; }, httpFileOptions?: Partial, body?: any, headers?: { [key: string]: string; }) => Promise; export { getHttpFile };