import * as React from 'react'; /** Props接口 */ interface IProps { } export default class Task extends React.Component { constructor(props: IProps); render(): JSX.Element; } export {};