/** * structured output of PR classification * */ import type { Decision } from './types.js'; /*** * centralized decision logic based on final score * * thresholds are conservative to prevent spam * */ export declare function decide(score: number, originalPr: number): Decision; //# sourceMappingURL=decisionEngine.d.ts.map