export interface UpdateState { skippedVersion?: string; lastCheckedAt?: string; lastPromptedVersion?: string; } export declare function loadUpdateState(): UpdateState | null; export declare function saveUpdateState(state: UpdateState): void; /** Test-only: redirect file path to an isolated temp location. */ export declare function _testSetStateFile(p: string): void;