import type { GeometryQuality } from '@ifc-lite/geometry'; import type { GenerateLod1Result, LodInput } from './lod-geometry-types.js'; export type GenerateLod1Options = { quality?: GeometryQuality; /** * Test-only hook to simulate meshing failure and force fallback. * Not intended for production use. */ __forceMeshingErrorForTest?: boolean; }; export declare function generateLod1(input: LodInput, options?: GenerateLod1Options): Promise; //# sourceMappingURL=lod1-generator.d.ts.map