import type { UsageStats } from '../../lib/api-client/usage'; export interface UsageCacheProps { stats: UsageStats; /** Replays the grow-in when the scope or range changes. */ resetKey?: string; } /** * Cache efficiency per provider. `inputTokens` is stored exclusive of cache * reads and writes, so the hit rate is cache reads over the full prompt — * the share of prompt tokens that were billed at the cheaper cached rate. */ export declare function UsageCache({ stats, resetKey }: UsageCacheProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=UsageCache.d.ts.map