import type { NarrativeRequest } from '../../../infra/api/narrative/narrative-api-types.js'; export type WidgetNarrativeInteractiveProps = { summary: string; narrativeRequest: NarrativeRequest; }; /** * Chart-area narrative text with optional thumbs feedback; mirrors legacy ChartInsights without `modules/ai`. * * @internal */ export declare function WidgetNarrativeInteractive({ summary, narrativeRequest, }: WidgetNarrativeInteractiveProps): import("react/jsx-runtime").JSX.Element;