export interface AlertState { cycleAlertLevel: string | null; weeklyAlertLevel: string | null; weeklyThresholdsFired: number[]; resetReminderFired: boolean; lastCycleResetAt: number; lastWeeklyPctSeen: number; quotaAlertCooldown: Record; contextThresholdsFired: Record; } export declare function getAlertState(): AlertState; export declare function persistAlertState(): void;