type Vector3 = [x: number, y: number, z: number]; interface Axis { x: Vector3; y: Vector3; z: Vector3; } export default class VolumeHeader { readonly center: Vector3; readonly boundingSphereRadius: number; readonly endian: string; readonly dimension: number; readonly encoding: string; readonly sizes: { quaternion: number; x: number; y: number; z: number; }; readonly spaceDimension: number; readonly spaceOrigin: Vector3; readonly spaceAxis: Axis; readonly type: string; constructor(content: string); private computeCenter; private computeBoundingSphereRadius; } export {}; //# sourceMappingURL=header.d.ts.map