import type { KanbanInput, KanbanResult } from './types.js'; /** * Calculate the number of kanban cards required * * Kanban is a scheduling system for lean manufacturing and just-in-time production. * The number of kanbans determines the maximum inventory in the system. * * Formula: K = (D × L × (1 + S)) / C * Where: * D = Daily demand * L = Lead time (days) * S = Safety factor (decimal) * C = Container quantity (units per container) * * @param input - Kanban calculation parameters * @returns Number of kanban cards and related metrics */ export declare function kanban(input: KanbanInput): KanbanResult; //# sourceMappingURL=kanban.d.ts.map