import { Model } from "../core/model.js"; import { Scene } from "../core/scene.js"; /** * Static class for loading a model from a Uint 8 array... * * note this is only the initial model parse, no geometry extraction has been performed. */ export declare class ConwayModelLoader { /** * Load a model using the format detector * * @param data The buffer to load from. * @param limitCSGDepth Whether to limit CSG depth during geometry extraction. * @param maximumCSGDepth The maximum CSG depth allowed during geometry extraction. * @param modelID The model id to use for statistics (or 0 if none is provided) * @return {Promise<[Model, Scene]>} A promise to return the loaded model and scene. */ static loadModelWithScene(data: Uint8Array, limitCSGDepth?: boolean, maximumCSGDepth?: number, modelID?: number): Promise<[ Model, Scene ]>; } //# sourceMappingURL=conway_model_loader.d.ts.map