import { Gamification } from '@streamlayer/feature-gamification'; import { VideoPlayerProps } from '../../../video-player'; type FeedItem = Exclude['getValue']>>, undefined>; interface QuestionListProps { questions: FeedItem; openQuestion: (questionId: string, options: { openedFrom: 'list'; }) => void; controlVideo: VideoPlayerProps['controlVideo']; } export declare const QuestionList: React.FC; export {};