import type { SessionStats } from './session.js'; export declare const PLAN_CAPS: Record; export interface CapStatus { planKey: string; planLabel: string; capUsd: number; spentUsd: number; remainingUsd: number; pctUsed: number; daysIntoMonth: number; daysInMonth: number; dailyRateUsd: number; projectedMonthlyUsd: number; projectedHitDate: Date | null; status: 'safe' | 'watch' | 'danger' | 'over'; } export declare function computeCapStatus(allStats: readonly SessionStats[], planKey: string, now?: Date): CapStatus; export declare function printCapStatus(status: CapStatus): void; export declare function parsePlanFlag(argv: readonly string[]): string; //# sourceMappingURL=cap.d.ts.map