import { BinaryIO } from '../common/BinaryIO.js';
import type { ArxVector3 } from '../common/types.js';
import type { ArxFTS } from './FTS.js';
/**
 * @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FastSceneFormat.h#L94
 */
export type ArxSceneHeader = {
    numberOfTextures: number;
    numberOfAnchors: number;
    mScenePosition: ArxVector3;
    numberOfPortals: number;
    numberOfRooms: number;
};
export declare class SceneHeader {
    static readFrom(binary: BinaryIO<ArrayBufferLike>): ArxSceneHeader;
    static accumulateFrom(json: ArxFTS): ArrayBuffer;
    static sizeOf(): number;
}
