export declare class DownloadedURL {
    fileName: string;
    contentType: string;
    contentLength: number;
}
export declare class URLDownloader {
    static download(url: string, dir: string, onFinish: (result: DownloadedURL | Error) => void): void;
}
