import { AxiosInstance, AxiosResponse } from "axios"; import { FileSearcher, ResponseMessage } from "../types/"; export declare class FilesApi { request: AxiosInstance; path: string; constructor(strPath: string, request: AxiosInstance); list: (searcher: FileSearcher) => Promise>; count: (searcher: FileSearcher) => Promise>; pack: (fileId: Array) => Promise>; }