import type { CredentialRankingStrategy, UsageProvider } from "../usage"; export declare const antigravityUsageProvider: UsageProvider; /** * Antigravity quotas are returned per backend counter (Anthropic / Google / * OpenAI) and can include both daily and weekly windows. `fetchAntigravityUsage` * sorts `limits` ascending by `remainingFraction`; after model-family scoping, * the most-pressured relevant counter/window is index 0. * * Leave `secondary` unset: AuthStorage compares secondary metrics before * primary metrics, which is correct for providers with a fixed short/long * split but wrong here. Ranking Antigravity by the bottleneck counter first * avoids preferring an account at 95% Gemini daily / 0% Claude weekly over one * with healthier Gemini headroom. */ export declare const antigravityRankingStrategy: CredentialRankingStrategy;