import type { FullBox } from './FullBox.js';
import type { SampleToChunkEntry } from './SampleToChunkEntry.js';
/**
 * Sample to Chunk Box - 'stsc'
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type SampleToChunkBox = FullBox & {
    type: 'stsc';
    entryCount: number;
    entries: SampleToChunkEntry[];
};
//# sourceMappingURL=SampleToChunkBox.d.ts.map