import type { ContainerBox } from './ContainerBox.js';
import type { TrackReferenceTypeBox } from './TrackReferenceTypeBox.js';
/**
 * Track Reference Box - 'tref' - Container
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type TrackReferenceBox = ContainerBox<TrackReferenceTypeBox> & {
    type: 'tref';
};
//# sourceMappingURL=TrackReferenceBox.d.ts.map