import type { FullBox } from './FullBox.js';
/**
 * ISO/IEC 23001-7:2011 - 8.2 Track Encryption Box
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type TrackEncryptionBox = FullBox & {
    type: 'tenc';
    defaultIsEncrypted: number;
    defaultIvSize: number;
    defaultKid: number[];
};
//# sourceMappingURL=TrackEncryptionBox.d.ts.map