import type { Update } from './types.js'; export declare function saveUpdateLocal(update: Update): Promise; export declare function loadUpdateLocal(id: string): Promise; export declare function listUpdatesLocal(opts?: { projectId?: string; limit?: number; }): Promise;