import { FactoidMediaMode, InsightHistory, Promotion } from '@streamlayer/sdk-web-types'; import { VideoPlayerProps } from '../../../../ui/video-player'; export type InsightContentProps = InsightHistory & { isDetail?: boolean; muted?: boolean; adPromotion?: Promotion; controlVideo: VideoPlayerProps['controlVideo']; questionId?: string; setIsInsightDescriptionExpanded?: (isExpanded: boolean) => void; isInsightDescriptionExpanded?: boolean; fireEvent?: (event: string) => void; isEventFired?: (event: string) => boolean; mode?: FactoidMediaMode; }; export declare const InsightContentTV: React.FC;