import type { FullBox } from './FullBox.js';
/**
 * Compact Sample Size Box - 'stz2'
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type CompactSampleSizeBox = FullBox & {
    type: 'stz2';
    fieldSize: number;
    sampleCount: number;
    entrySize: number[];
};
//# sourceMappingURL=CompactSampleSizeBox.d.ts.map