export interface Hlss {
    src: string;
}
export interface Mp4s {
    size: number;
    src: string;
}
export interface MediaflowVideoInfo {
    id: number;
    title: string;
    type: string;
    hls: boolean;
    hlss: Hlss[];
    mp4: boolean;
    mp4s: Mp4s[];
    sign: any[];
    audioTracks: any[];
    videoTracks: any[];
    vp: boolean;
    duration: number;
    statsURL: string;
    width: number;
    height: number;
    native: string;
    subtitles: any[];
    poster: string;
}
