import type { AccountCoolingReason, PersistedAccountCooldown } from "../types/index.js"; export declare function initAccountCooldown(cooldownFilePath: string): void; export declare function loadAccountCooldowns(): Promise>; export declare function saveAccountCooldown(accountKey: string, coolingUntil: number, reason: AccountCoolingReason): Promise; export declare function clearAccountCooldown(accountKey: string, expectedCoolingUntil?: number): Promise;