/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; import { ArxCell } from './Cell'; /** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FastSceneFormat.h#L125 */ export type ArxSceneInfo = { numberOfPolygons: number; numberOfAnchors: number; }; export declare class SceneInfo { static readFrom(binary: BinaryIO): ArxSceneInfo; static accumulateFrom(cell: ArxCell): Buffer; static sizeOf(): number; }