import type { IfcState } from '../BaseDefinitions'; /** * Contains the logic to manage the type (e. g. IfcWall, IfcWindow, IfcDoor) of * all the items within an IFC file. */ export declare class TypeManager { private state; constructor(state: IfcState); getAllTypes(): Promise; getAllTypesOfModel(modelID: number): Promise; }