import { BinaryIO } from '../common/BinaryIO.js';
/** @see https://github.com/arx/ArxLibertatis/blob/1.2.1/src/graphics/data/FTLFormat.h#L97 */
export type ArxFtlTextureContainer = {
    filename: string;
};
export declare class FtlTextureContainer {
    static readFrom(binary: BinaryIO<ArrayBufferLike>): ArxFtlTextureContainer;
    static accumulateFrom(textureContainer: ArxFtlTextureContainer): ArrayBuffer;
    static sizeOf(): number;
}
