/// import { BinaryIO } from '../common/BinaryIO'; import { Color } from '../common/Color'; export type ArxLightingHeader = { numberOfColors: number; }; export declare class LightingHeader { static readFrom(binary: BinaryIO): ArxLightingHeader; static accumulateFrom(colors: Color[]): Buffer; static sizeOf(): number; }