import { XtreamCredentials, XtreamQueryInfo } from "./types.js"; export declare function isXtreamUrl(url: string): boolean; export declare function parseXtream(url: string): XtreamQueryInfo | undefined; export declare function makeXtreamCredentials(host: string, username: string, password: string): XtreamCredentials; export declare function buildXtreamM3uUrl(creds: XtreamCredentials, opts?: { type?: string; output?: string; category?: string; }): string; export declare function buildXtreamCatchupUrl(creds: XtreamCredentials, streamId: string | number, startUtc: number, durationSeconds: number, output?: "ts" | "m3u8"): string;