export interface ReadyTask { taskId: string; name: string; description: string; priority: string; dueDate?: string; createdAt: string; } /** * Returns tasks that are safe to start: status=pending, zero unresolved * BLOCKS, and no AFFECTS conflict with currently active tasks. * * This is the product equivalent of the development lane compatibility * matrix — it answers "what can I work on next without conflict?" * * Pending task is READY when: * 1. No incomplete task BLOCKS it (sequential dependency) * 2. No active task AFFECTS the same entity (conflict detection) */ export declare function workReady(accountId: string): Promise; //# sourceMappingURL=work-ready.d.ts.map