import type { IInteractionCategory, IInteractionStepTile } from "../data/types.js"; export interface IIntelligenceTimelineProps { steps: IInteractionStepTile[]; totalDurationMs: number; categories: IInteractionCategory[]; /** Step indexes to highlight — a category's occurrences, or none in the plain list view. */ highlightedStepIndexes?: number[]; } /** * The single timeline track shared by the list view and every category's detail view: one tile * per interaction step, with a hover tooltip listing that step's activities and its own * duration/tokens. Never navigable — highlighting is driven entirely by `highlightedStepIndexes`. * Self-gated on the `enableGenAiInteractionIntelligence_timeline` sub-flag. */ export declare function IntelligenceTimeline({ steps, totalDurationMs, categories, highlightedStepIndexes, }: IIntelligenceTimelineProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=IntelligenceTimeline.d.ts.map