import { AxiosResponse } from 'axios'; import { BglFile, BglFilePatch, UploadOptions } from './upload.types.d.ts'; export declare function createUploadApi(options?: { baseURL?: string; }): void; export declare const files: { get: (pathKey?: string) => Promise>; put: (bglFilePatch: BglFilePatch, pathKey?: string) => Promise>; delete: (pathKey?: string) => Promise>; upload: (file: File, options?: UploadOptions & { dirPath?: string; tags?: string[]; }) => Promise>; list: (dirPath?: string) => Promise>; }; //# sourceMappingURL=upload.d.ts.map