import type { IInteractionCategory } from "../data/types.js"; export interface IIntelligenceCategoryListProps { categories: IInteractionCategory[]; onSelectCategory: (index: number) => void; /** Lifts the hovered category's step indexes so the sibling timeline can highlight them. */ onHoveredStepIndexesChange: (stepIndexes: number[] | undefined) => void; } /** * The list of category rows. Hovering a row reports its step indexes up so the timeline above * can highlight the tiles where that category occurred — the list itself renders no timeline. */ export declare function IntelligenceCategoryList({ categories, onSelectCategory, onHoveredStepIndexesChange, }: IIntelligenceCategoryListProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=IntelligenceCategoryList.d.ts.map