import { DrawingID, ScgObject } from '@buerli.io/core'; import { BufferGeometry } from 'three'; /** * Helps to create the buffer geometry of the given object recursively. * @param object object to create the buffergeometry from * @param bufferGeomArray array to fill up with buffert geometries */ export declare const createRecursiveBufferGeometry: (object: ScgObject, drawingId: DrawingID, bufferGeomArray: BufferGeometry[]) => Promise;