/** * @description 合约服务 * * @date 创建时间 2022/10/24 15:08 * @author yena.he */ import { FC } from "react"; import { TradeTypeEnum } from "../../../../exchangeShared/types"; import "./index.css"; export interface ProjectFuturesProps { tradeType?: TradeTypeEnum; } declare const ProjectFutures: FC; export default ProjectFutures;