import { Notification } from '@streamlayer/sdk-web-notifications'; import { InsightHistory, InstantView } from '@streamlayer/sdk-web-types'; import { VideoPlayerProps } from '../../../../video-player'; export type InsightProps = InstantView & { imageMode?: InsightHistory['imageMode']; action: Notification['action']; controlVideo: VideoPlayerProps['controlVideo']; }; export declare const Insight: React.FC;