import type { ComposedNode } from './types.js'; export interface PointCloudExtraction { expressId: number; ifcType?: string; positions: Float32Array; colors?: Float32Array; pointCount: number; bbox: { min: [number, number, number]; max: [number, number, number]; }; } export declare function extractPointClouds(composed: Map, pathToId: Map): PointCloudExtraction[]; //# sourceMappingURL=pointcloud-extractor.d.ts.map