import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetCurrencies(params?: {}): Promise; publicGetPairs(params?: {}): Promise; publicGetOrderbookPairName(params?: {}): Promise; publicGetExchanges(params?: {}): Promise; publicGetChartsPairTypeChart(params?: {}): Promise; publicGetTicker(params?: {}): Promise; privateGetWallets(params?: {}): Promise; privateGetOrdersOwn(params?: {}): Promise; privateGetOrderId(params?: {}): Promise; privateGetExchangesOwn(params?: {}): Promise; privateGetDeposits(params?: {}): Promise; privateGetWithdraws(params?: {}): Promise; privatePostOrder(params?: {}): Promise; privatePostOrderCancel(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;