import type { FullBox } from './FullBox.js';
/**
 * Chunk Large Offset Box - 'co64'
 *
 * @group ISOBMFF
 *
 * @beta
 */
export type ChunkLargeOffsetBox = FullBox & {
    type: 'co64';
    entryCount: number;
    chunkOffset: number[];
};
//# sourceMappingURL=ChunkLargeOffsetBox.d.ts.map