import type { QuotaAxiResponse } from "./types.js"; export declare const KEYCHAIN_ACCESS_REASON = "keychain_access_required"; export declare const KEYCHAIN_ACCESS_REMEDY_COMMAND = "quota-axi --allow-keychain-prompt"; export declare const CREDENTIALS_EXPIRED_REASON = "credentials_expired"; export declare const GROK_TOKEN_REFRESH_REMEDY_COMMAND = "grok"; export declare function annotateQuotaAdvice(response: Omit): QuotaAxiResponse; /** * Situational advice stays first because it is actionable; only the tier hint * is worth repeating on every invocation. */ export declare function quotaHelpLines(response: QuotaAxiResponse): string[];