import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetDepthPair(params?: {}): Promise; publicGetInfo(params?: {}): Promise; publicGetTickerPair(params?: {}): Promise; publicGetTradesPair(params?: {}): Promise; privatePostActiveOrders(params?: {}): Promise; privatePostCancelOrder(params?: {}): Promise; privatePostGetDepositAddress(params?: {}): Promise; privatePostGetInfo(params?: {}): Promise; privatePostOrderInfo(params?: {}): Promise; privatePostTrade(params?: {}): Promise; privatePostTradeHistory(params?: {}): Promise; privatePostWithdrawCoinsToAddress(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;