import SegmentsMediaInfo from './SegmentsMediaInfo'; /** * @export * @class ClosedCaptionsMediaInfo */ export declare class ClosedCaptionsMediaInfo extends SegmentsMediaInfo { /** * Specifies a Rendition within the segments in the Media Playlist. (See HLS spec 4.3.4.1. EXT-X-MEDIA INSTREAM-ID) (required) * @type {string} * @memberof ClosedCaptionsMediaInfo */ instreamId?: string; /** * A value of true indicates that the Rendition contains content which is considered essential to play. * @type {boolean} * @memberof ClosedCaptionsMediaInfo */ forced?: boolean; constructor(obj?: Partial); } export default ClosedCaptionsMediaInfo;