import { AxiosInstance, AxiosResponse } from "axios"; import { FileAttach } from "../types/"; export declare class UploadingApi { request: AxiosInstance; path: string; constructor(strPath: string, request: AxiosInstance); getFilesTextByProcessInstanceId(id: number): Promise>; getFilesByProcessInstanceId(id: number): Promise>>; getFileById(id: number, name: string): void; deleteFile(fileId: number, processInstanceId: number): Promise>; getFileDataById(id: number): Promise; getById(id: number): Promise>; } export default UploadingApi;