import type { TaktTimeInput, TaktTimeResult } from './types.js'; /** * Calculate Takt Time * * Takt Time = Available Time / Customer Demand * * Takt time is the rate at which products must be produced to meet customer demand. * * @param input - Takt time input parameters * @returns Takt time result with time per unit and max rate per hour */ export declare function taktTime(input: TaktTimeInput): TaktTimeResult; //# sourceMappingURL=takt.d.ts.map