import { BillingStatus } from '../lib/billing'; /** * ZeroShot CreditMeter — org credit usage for the current billing period. */ import * as React from "react"; export interface CreditMeterProps extends React.HTMLAttributes { creditsUsed: number; monthlyCredits: number; status: BillingStatus; /** ISO date string for billing period end */ periodEnd: string; className?: string; } export declare function CreditMeter({ creditsUsed, monthlyCredits, status, periodEnd, className, ...props }: CreditMeterProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=credit-meter.d.ts.map