import type { ProxyError } from './types.js'; export type RecoveryKind = 'user-topup' | 'add-key' | 'team-action' | 'sponsored-out' | 'campaign-out'; export type RecoveryClass = { readonly kind: RecoveryKind; readonly actor: 'user' | 'team-owner' | 'builder'; /** Suggested amount to ADD to the current budget (top-up is additive). */ readonly suggestedAmount?: number; readonly currentLimit?: number; readonly currentSpent?: number; readonly message: string; readonly dashboardPath: string; }; export declare const isFundingError: (error: ProxyError["error"]) => RecoveryClass | null; //# sourceMappingURL=recovery.d.ts.map