/** * ID Detector - Determines if an ID is a task or cluster * * Strategy: * 1. Check if ID exists in cluster storage * 2. If not, check if ID exists in task storage (SQLite) * 3. Return type: 'cluster', 'task', or null */ type IdType = 'cluster' | 'task' | null; /** Detect if an ID belongs to a cluster or task. */ declare function detectIdType(id: string): IdType; declare const _default: { detectIdType: typeof detectIdType; }; export = _default;