import type { YieldInput, YieldResult } from './types.js'; /** * Calculate First Pass Yield (FPY) and Rolled Throughput Yield (RTY) * * FPY = Good Units / Total Units (per step) * RTY = Product of all FPY values (cumulative yield) * * @param input - Yield input parameters * @returns Yield analysis result */ export declare function yieldCalc(input: YieldInput): YieldResult; //# sourceMappingURL=yield.d.ts.map