import { BufferData } from "./types/graph"; export declare function isHLSStream(url: string): Promise; export declare function getStaticHLSMetadata(url: string): Promise<{ segmentCount: number; totalDuration: number; }>; export declare function createHLSStream(url: string, options?: { maxBufferSize?: number; }): Promise>;