/** * Trust breakdown calculator (v4.2). * * Computes a multi-dimensional trust score for npm/pypi packages: * Publisher Trust, Code Quality, Dependency Trust, Release Process. */ import type { Finding, TrustBreakdown } from "./types.js"; /** * Calculate trust breakdown from findings and package metadata. */ export declare function calculateTrustBreakdown(findings: Finding[], packageName: string, hasLockfile: boolean): TrustBreakdown; //# sourceMappingURL=trust-breakdown.d.ts.map