import { BinaryIO } from '../common/BinaryIO.js';
import type { ArxCell } from './Cell.js';
/**
 * @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<ArrayBufferLike>): ArxSceneInfo;
    static accumulateFrom(cell: ArxCell): ArrayBuffer;
    static sizeOf(): number;
}
