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