import { Dict, Playlist } from "./types.js"; export interface FetchOptions { headers?: Dict; userAgent?: string; referer?: string; cookie?: string; } export declare function fetchText(url: string, opts?: FetchOptions): Promise; export declare function loadPlaylistFromUrl(url: string, opts?: FetchOptions): Promise;