import type { ProviderId, ProviderQuota } from "./types.js"; export declare function readCachedProvider(provider: ProviderId): ProviderQuota | undefined; /** * Claude stale quota may only be reused when the cache record proves it was * captured for the same locally selected credential context. */ export declare function readCachedClaudeProvider(contextId: string): ProviderQuota | undefined; export declare function writeCachedProviders(providers: ProviderQuota[]): void; export declare function deleteCachedProvider(provider: ProviderId): void;