import { PlanViewConfig } from './plan-manager'; import { IfcPlane } from '../clipping-planes/planes'; import { IfcDimensions } from '../dimensions/dimensions'; import { IfcContext } from '../../context'; export declare class PlanView implements PlanViewConfig { expressID: number; modelID: number; name: string; plane?: IfcPlane; ortho: boolean; drawings?: IfcDimensions; context: IfcContext; constructor(modelID: number, expressID: number, name: string, ortho: boolean, context: IfcContext); addPlane(plane: IfcPlane): void; }