interface Task { id: string; prompt: string; runAt: number; } /** Listens for careless:task-fire events and invokes onFire with the task prompt. */ declare function useTaskListener(onFire: (task: Task) => void, enabled?: boolean): void; export { useTaskListener };