import type { Box } from './Box.js';
/**
 * ISO/IEC 14496-30:2014 - WebVTT Configuration Box
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type WebVttConfigurationBox = Box & {
    type: 'vttC';
    config: string;
};
//# sourceMappingURL=WebVttConfigurationBox.d.ts.map