import { ApiParams } from "../api"; export interface UploadAsyncMethodOptions { method: string; isJson: boolean; accept: string; params: { [key: string]: string | number | boolean | Date | undefined; }; isAuthenticated: boolean; fieldName: string; headers: { [key: string]: string; }; } declare function uploadAsyncMethod(apiParams: ApiParams): (path: string, uri: string, uploadAsyncOptions?: Partial) => Promise; export { uploadAsyncMethod };