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