import { HttpClient, HttpEvent } from '@angular/common/http'; import { Observable, Subject } from 'rxjs'; import { Protocol } from '../classes'; import { FileManagerInterface } from '../interfaces'; export declare class AngularFileUploadProtocol extends Protocol { private _httpClient; protected ngUnsubscribe: Subject; constructor(_httpClient: HttpClient); /** * Implementation of the abstract.protocol method `run` * * @memberOf ProtocolXHR */ run(_file: FileManagerInterface): Promise; handleMethode(_file: FileManagerInterface, requestHandle: Observable>, time: number): Promise>; cancel(_file: FileManagerInterface): void; }