import ProxyService from './Proxy'; import { EmptyResponse, Proxy, Storage } from './types'; export default class StorageService { proxy: ProxyService; readonly route: string; constructor(proxy: ProxyService); list(params?: Storage.ListParams): Promise; create(params?: Storage.CreateParams): Promise; delete(id: number | string): Promise; createAndUpload(params: Storage.CreateAndUploadParams): Promise; upload(params: Proxy.Params): Promise; markUploaded(params: Storage.MarkUploadedParams): Promise; getInfo(id: number | string): Promise; getFile(uid: string): Promise; getFileObject(uid: string, params: Storage.GetFileObjectParams): Promise; update(params: Storage.UpdateParams): Promise; privateUrl(fileUID?: string): string; publicUrl(fileUID?: string): string; private parseUri; } //# sourceMappingURL=Storage.d.ts.map