import { VerifyReport } from '../verify/report.js'; export interface ExportFormats { step?: boolean; glb?: boolean; stl?: boolean; } export interface ExportResult { ok: boolean; report: VerifyReport; written: string[]; errors: string[]; } export declare function stem(file: string): string; export declare function exportPart(modulePath: string, formats: ExportFormats, outDir: string): Promise;