export declare const downloadYoutubeVideo: ({ getYoutubeUrl, download, }?: {
    getYoutubeUrl?: (() => Promise<string>) | undefined;
    download?: ((url: string) => Promise<string>) | undefined;
}) => Promise<string>;
