declare const CHUNK_SIZE_TARGET: number; declare const CHUNK_SIZE_MAX: number; interface SectionFile { blocks: Uint8Array[]; } declare function packSection(files: SectionFile[]): Uint8Array[]; export { CHUNK_SIZE_MAX, CHUNK_SIZE_TARGET, type SectionFile, packSection };