/// 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#L107 */ export type ArxTextureContainer = { tc: number; temp: number; fic: string; }; export declare class TextureContainer { static readFrom(binary: BinaryIO): ArxTextureContainer; static accumulateFrom(textureContainer: ArxTextureContainer): Buffer; static sizeOf(): number; }