import { Redis } from 'ioredis'; import { QuotaCheckResult, QuotaClientServiceInterface } from '../interfaces/index.js'; export declare const QUOTA_REDIS = "QUOTA_REDIS"; export declare class QuotaClientService implements QuotaClientServiceInterface { private readonly redis; private readonly logger; constructor(redis: Redis | null); checkQuota(userId: string, quotaType: string): Promise; report(userId: string, quotaType: string, amount: number): Promise; private key; } //# sourceMappingURL=quota-client.service.d.ts.map