import React from 'react'; declare type QuestionProps = { data: any; report: any; updateActivity?: (activityId: string, topicConfig: string, topicResult: string, topicStatus: '0' | '1') => Promise; preActive?: (data: any) => boolean | void; }; declare const Question: React.FC; export default Question;