export interface IVoxel { x: number; y: number; z: number; colorIndex: number; } export declare class VoxelData { size: number; jitter: number; voxels: IVoxel[]; palette: any[]; anim: any[]; constructor(); } export declare const GetBinary: (url: any) => Promise; export declare const Parse: (binary: Uint8Array) => VoxelData;