import type { InteractionIntelligenceMode } from "./data/types.js"; /** * Props for the {@link GenAiInteractionIntelligence} component. * @public */ export interface IGenAiInteractionIntelligenceProps { responseId: string; onClose: () => void; /** Lets a consumer render directly into a specific category's detail view. */ initialMode?: InteractionIntelligenceMode; /** Category id to open when `initialMode === "detail"`. Falls back to list mode if unknown. */ initialCategory?: string; } /** * The Interaction Intelligence panel: a single timeline of the processing steps behind one * assistant response, with a list view and a per-category detail view. Loads its own data on * mount and owns which view/category is currently shown. * @public */ export declare function GenAiInteractionIntelligence({ responseId, onClose, initialMode, initialCategory, }: IGenAiInteractionIntelligenceProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=GenAiInteractionIntelligence.d.ts.map