import type { CpkToOccurrenceInput, CpkToOccurrenceResult } from './types.js'; /** * Map Cpk (Process Capability Index) to FMEA Occurrence rating * * Based on AIAG-VDA FMEA Handbook correlation between process capability * and occurrence likelihood. * * @reference AIAG & VDA (2019). "FMEA Handbook", 1st Edition, Table O-1. * * @throws {RangeError} Cpk must be a non-negative number */ export declare function cpkToOccurrence(input: CpkToOccurrenceInput): CpkToOccurrenceResult; //# sourceMappingURL=cpkToOccurrence.d.ts.map