/** * ISL risk score strategy - registered calculators only. */ export { RiskScoreStrategy } from './types.js'; export type { RiskScoreCalculator } from './types.js'; export { maxConfidenceCalculator, severityPlusVolumeCalculator, weightedByTypeCalculator, defaultWeightedByTypeCalculator, DEFAULT_TYPE_WEIGHTS } from './calculators.js'; import { RiskScoreStrategy } from './types.js'; import type { RiskScoreCalculator } from './types.js'; /** * Returns the registered calculator for the given strategy. * For WEIGHTED_BY_TYPE without custom weights, uses default weights. */ export declare function getCalculator(strategy: RiskScoreStrategy, typeWeights?: Record): RiskScoreCalculator; //# sourceMappingURL=index.d.ts.map