import { Project } from '../../../project/project'; import { Importer, ImportOptions } from '../exporter'; export interface STLImportOptions extends ImportOptions { scale?: number; } /** * STL importer - imports STL files (ASCII and binary) into a project */ export declare class STLImporter implements Importer { import(data: string | ArrayBuffer, project: Project, options?: STLImportOptions): void; private importASCII; private importBinary; } //# sourceMappingURL=stl_importer.d.ts.map