export declare type Action = (from: number, to: number) => T | Promise; /** * @description synchronously (one-after-one) apply callback for every batch pair */ export declare function batchIterate(from: number, to: number, batch: number, cb: Action): Promise;