import type { MindMapData } from '../types'; export interface MindMapSearchState { availableTags: string[]; searchMatches: Set; tagMatches: Set; tagContext: Set; dimmedNodes: Set; matchIds: string[]; } export declare function analyzeMindMapSearch(roots: MindMapData[], query: string, activeTags: string[]): MindMapSearchState;