import { AnyShape } from 'brepjs'; import { BrepNs } from './brepjsRuntime.js'; import { VerifyReport } from './report.js'; export interface RunChecksOptions { /** Compute deterministic manufacturability metrics (bodies/interference). Default false — the * author `--check` loop skips them; only the judge/snapshot path opts in (they are slow on * high-face assemblies). */ metrics?: boolean; } export declare function runChecks(brep: BrepNs, shape: AnyShape, opts?: RunChecksOptions): VerifyReport;