import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetMarketsAll(params?: {}): Promise; publicGetOrdersOpen(params?: {}): Promise; publicGetOrdersHistory(params?: {}): Promise; publicGetOrdersLifecycle(params?: {}): Promise; publicGetOrdersDepth(params?: {}): Promise; publicGetTradesDaily(params?: {}): Promise; publicGetTradesHistory(params?: {}): Promise; publicGetTradesRecent(params?: {}): Promise; publicGetChartOhlcv(params?: {}): Promise; publicGetStatusSync(params?: {}): Promise; publicGetAccountBalances(params?: {}): Promise; publicPostOrdersSerialize(params?: {}): Promise; publicPostOrdersSubmit(params?: {}): Promise; privateGetUserFees(params?: {}): Promise; privateGetAccountDeposits(params?: {}): Promise; privateGetAccountWithdrawals(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;