import type { Box } from './Box.js';
/**
 * Utility TypeBox
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type TypeBox<T> = Box & {
    type: T;
    majorBrand: string;
    minorVersion: number;
    compatibleBrands: string[];
};
//# sourceMappingURL=TypeBox.d.ts.map