import { IBatch } from "./IBatch"; import { ILeadTime } from "./ILeadTime"; import { ITask } from "./ITask"; export interface ILeadTimeConfiguration { daysPerUnitOfWork: number; } export declare class LeadTimeCalculator> { private configuration; constructor(configuration: ILeadTimeConfiguration); private calculateLeadTimeInDaysForBatch; private calculateLeadTimeRec; calculateLeadTime: (batches: IBatch[]) => ILeadTime[]; }