export declare class QuotaInfo { type?: string; used?: number; quota?: number; min?: number; max?: number; constructor(type?: string, used?: number, quota?: number, min?: number, max?: number); withType(type: string): QuotaInfo; withUsed(used: number): QuotaInfo; withQuota(quota: number): QuotaInfo; withMin(min: number): QuotaInfo; withMax(max: number): QuotaInfo; } //# sourceMappingURL=QuotaInfo.d.ts.map