export type QuotaCheckResult = { exceeded: boolean; used: number; limit: number; }; export declare const QUOTA_CLIENT_SERVICE = "QUOTA_CLIENT_SERVICE"; export interface QuotaClientServiceInterface { checkQuota(userId: string, quotaType: string): Promise; report(userId: string, quotaType: string, amount: number): Promise; } //# sourceMappingURL=quota-client.interface.d.ts.map