/** * resolve_thread Tool * * Mark an open thread as resolved. Supports resolution by: * - thread_id: exact match (preferred) * - text_match: case-insensitive substring match (fallback) * * Updates Supabase (source of truth) + local file (cache). * Falls back to local-only if Supabase is unavailable or thread * doesn't exist in Supabase. * * Performance target: <500ms (Supabase update + file write) */ import type { ResolveThreadParams, ResolveThreadResult } from "../types/index.js"; export declare function resolveThread(params: ResolveThreadParams): Promise; //# sourceMappingURL=resolve-thread.d.ts.map