import type { IInteractionCategory } from "../data/types.js"; export interface IIntelligenceCategoryRowProps { category: IInteractionCategory; onSelect: () => void; onHoverChange: (isHovered: boolean) => void; } /** * One list row: the category's icon, its label, a content excerpt on the right (never a * duration — that figure was always a fabricated per-category aggregate), and a chevron to open * its detail view. Reports its own hover state up so the shared timeline can highlight the steps * this category occurred in. */ export declare function IntelligenceCategoryRow({ category, onSelect, onHoverChange, }: IIntelligenceCategoryRowProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=IntelligenceCategoryRow.d.ts.map