export declare const TODU_DAEMON_EVENT_NAMES: readonly ["data.changed", "sync.statusChanged"]; export type ToduDaemonEventName = (typeof TODU_DAEMON_EVENT_NAMES)[number]; export interface ToduDaemonEvent { name: ToduDaemonEventName; payload: unknown; ts?: string; } export type ToduDaemonEventListener = (event: ToduDaemonEvent) => void; export interface ToduDaemonSubscription { unsubscribe(): void; }