export type Unsubscribe = () => void; /** Watch the canonical database and its WAL with a polling fallback. */ export declare function watchStateDatabase(databasePath: string, onChange: () => void, options?: { pollMs?: number; debounceMs?: number; }): Unsubscribe;