import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetDepth(params?: {}): Promise; publicGetOrders(params?: {}): Promise; publicGetTicker(params?: {}): Promise; publicGetTickers(params?: {}): Promise; privatePostBalance(params?: {}): Promise; privatePostTradeAdd(params?: {}): Promise; privatePostTradeCancel(params?: {}): Promise; privatePostTradeList(params?: {}): Promise; privatePostTradeView(params?: {}): Promise; privatePostWallet(params?: {}): Promise; webApiGetAjaxCoinCoinInfo(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;