/** * Entity index builder - creates fast lookup structures * * @deprecated Legacy eager-parse helper. New code should use * `scanIfcEntities()` plus `CompactEntityIndexBuilder`/`parseColumnar()`. */ import type { EntityRef, EntityIndex } from './types.js'; export declare class EntityIndexBuilder { private byId; private byType; addEntity(ref: EntityRef): void; build(): EntityIndex; } //# sourceMappingURL=entity-index.d.ts.map