/** * HLS (HTTP Live Streaming) Parser * Comprehensive parser for Apple HLS M3U8 playlists * Implements all 70+ tags from the HLS specification */ import { HlsPlaylist } from "./hls-types.js"; /** * Parse HLS playlist (auto-detects master vs media playlist) * @param text - Raw M3U8 playlist text * @returns Parsed HLS playlist (master or media) */ export declare function parseHlsPlaylist(text: string): HlsPlaylist;