export declare class RateLimiter {
    private quota;
    private MAX_BALANCE_MILLIS;
    private walletFloorMillis;
    constructor(quota: number, maxBalanceInSeconds?: number);
    take(cost?: number): boolean;
}
//# sourceMappingURL=rate-limiter.d.ts.map