/// import { Buffer } from 'node:buffer'; import { BinaryIO } from '../common/BinaryIO'; /** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FastSceneFormat.h#L161 */ export type ArxEPData = { px: number; py: number; idx: number; }; export declare class EPData { static readFrom(binary: BinaryIO): ArxEPData; static accumulateFrom({ px, py, idx }: ArxEPData): Buffer; static sizeOf(): number; }