import { Protocol } from './protocol.core';
import { Transfer } from './transfer.core';
import { TransferOptions } from '../interface';
export declare class FileUploader extends Transfer {
    private _subs;
    constructor(_options?: TransferOptions, _protocol?: Protocol);
    destroy(): void;
}
