/** * list_threads Tool * * List open threads across recent sessions. Shows unresolved work items * that carry over between sessions. * * Primary read from Supabase (source of truth). * Falls back to session-based aggregation (same as session_start), * then in-memory session state, then .gitmem/threads.json. * * Performance target: <500ms (Supabase query with fallback) */ import type { ListThreadsParams, ListThreadsResult } from "../types/index.js"; export declare function listThreads(params: ListThreadsParams): Promise; //# sourceMappingURL=list-threads.d.ts.map