import type { TsItemInfo } from '../types/m3u8.js';
/**
 * 边下边看
 */
export declare function localPlay(m3u8Info: TsItemInfo[]): Promise<{
    port: number;
    origin: string;
    server: import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>;
}>;
export declare function toLocalM3u8(m3u8Info: TsItemInfo[], m3u8FilePath?: string, host?: string): string;
