/** * @description 下单面板 * * @date 创建时间 2022-11-02 15:24 * @author 开发人员 */ import React from "react"; import { MarginTypeEnum } from "../../../../../../exchangeShared/types"; interface Props { leverage: number; marginType: MarginTypeEnum; } declare const OrderForm: React.FC; export default OrderForm;