import type { FullBox } from './FullBox.js';
/**
 * ISO/IEC 14496-12:2012 - 8.12.5 Scheme Type Box
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type SchemeTypeBox = FullBox & {
    type: 'schm';
    schemeType: number;
    schemeVersion: number;
    schemeUri?: string;
};
//# sourceMappingURL=SchemeTypeBox.d.ts.map