export interface YouTubeDownloadOptions {
    artist: string;
    title: string;
    label?: string;
    destinationDir: string;
}
export declare class YouTubeDownloader {
    constructor();
    download(options: YouTubeDownloadOptions): Promise<string | null>;
}
//# sourceMappingURL=youtube-downloader.d.ts.map