import { OrderTypeEnum } from "../../../../../../exchangeShared/types"; declare type numType = string | number; /** * 获取计算价格 * @param inputPrice 输入价格 * @param triggerPrice 触发价格 * @param buyOne 买一价格 * @param sellOne 卖一价格 * @param orderType 订单类型 * @param side 方向 */ export declare const useOrderPrice: (inputPrice: numType, triggerPrice: numType, buyOne: string | undefined, sellOne: string | undefined, orderType: OrderTypeEnum) => { buy: number; sell: number; }; export {};