/** * The segmenting configuration for this WebVTT sidecar file. If this is set, the given vtt file will be chunked. * @export * @class WebVttSidecarFileSegmentation */ export declare class WebVttSidecarFileSegmentation { /** * The length of the WebVTT fragments in seconds (required) * @type {number} * @memberof WebVttSidecarFileSegmentation */ segmentLength?: number; constructor(obj?: Partial); } export default WebVttSidecarFileSegmentation;