import WebTorrent = require('webtorrent');
import { DownloadedTorrent } from '../interfaces/downloadedtorrent';
export declare class TorrentDownloaderService {
    torrentClient: WebTorrent.Instance;
    verbose: boolean;
    constructor(verbose?: boolean);
    download(pathToTorrent: string, outPath: string): Promise<DownloadedTorrent>;
}
