import type { IInteractionCategory, IInteractionStepTile } from "../data/types.js"; export interface IIntelligenceStepTooltipProps { step: IInteractionStepTile; /** All of the turn's categories, to resolve the step's category ids to display labels. */ categories: IInteractionCategory[]; } /** * The hover tooltip for one timeline tile: an "ACTIVITY" eyebrow with the categories that ran * within the step (omitted when it ran none), a divider, and the step's own duration/tokens. */ export declare function IntelligenceStepTooltip({ step, categories }: IIntelligenceStepTooltipProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=IntelligenceStepTooltip.d.ts.map