export type Step = () => Promise; export type Options = { limit?: number; rejectLate?: boolean; }; export declare const callLimit: (queue: Step[], { limit, rejectLate }?: Options) => Promise; //# sourceMappingURL=index.d.ts.map