//#region src/lib/hexclave-app/plan-usage/index.d.ts type PlanUsageKind = "current" | "metered" | "capability"; type PlanUsagePlanId = "free" | "team" | "growth"; type PlanUsageNextPlanId = "team" | "growth"; type PlanUsageRow = { itemId: string; displayName: string; kind: PlanUsageKind; used: number | null; limit: number | null; remaining: number | null; overage: number | null; isUnlimited: boolean; }; type PlanUsage = { ownerTeamId: string; ownerTeamDisplayName: string; planId: PlanUsagePlanId; planDisplayName: string; periodStart: Date; periodEnd: Date; nextPlanId: PlanUsageNextPlanId | null; arePlanLimitsEnforced: boolean; rows: PlanUsageRow[]; }; //#endregion export { PlanUsageRow as a, PlanUsagePlanId as i, PlanUsageKind as n, PlanUsageNextPlanId as r, PlanUsage as t }; //# sourceMappingURL=index-B594jg4e.d.ts.map