import { TOKEN_ENUM, FIAT_ENUM } from "../../constants/tokens"; import { IResponse } from "../../type"; interface IMatchSellOrder { TOKEN_NAME: TOKEN_ENUM; FIAT_NAME: FIAT_ENUM; POSITION: number; AMOUNT: any; } export declare function matchSellOrder({ TOKEN_NAME, FIAT_NAME, POSITION, AMOUNT, }: IMatchSellOrder): Promise; export {};