import type { IInteractionIntelligenceTotals } from "./data/types.js"; export interface IInteractionIntelligenceTriggerProps { /** The turn's duration/tokens, shown as the trigger's own content. Renders nothing until available. */ totals?: IInteractionIntelligenceTotals; isOpen: boolean; onToggle: () => void; } /** * The Interaction Intelligence trigger shown next to an assistant message: the turn's * duration/tokens, styled like the panel's own summary stats, acting as the clickable trigger. * Renders nothing until `totals` is available. A plain toggle — it holds no state and renders no * panel itself. */ export declare function InteractionIntelligenceTrigger({ totals, isOpen, onToggle, }: IInteractionIntelligenceTriggerProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=InteractionIntelligenceTrigger.d.ts.map