import type { IPoolItemWithStats } from '../types'; import { RoundRobin } from './RoundRobin'; interface IMinLoad { curr: number; prev: number; } export declare class BalancedRoundRobin extends RoundRobin { readonly agents: Map; protected minLoad: IMinLoad; constructor(agents: Map); getNextItem(): TValue; [Symbol.iterator](): Generator; } export {}; //# sourceMappingURL=BalancedRoundRobin.d.ts.map