import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetDemoTemp(params?: {}): Promise; publicGetExchangeCandlesPairTimeframeFromTo(params?: {}): Promise; publicGetExchangePrices(params?: {}): Promise; publicGetExchangeTicksPairFrom(params?: {}): Promise; publicGetAssets(params?: {}): Promise; publicGetMarkets(params?: {}): Promise; publicGetExchangeBookPair(params?: {}): Promise; publicGetExchangeBookUpdatesPairFrom(params?: {}): Promise; privateGetUsersBalances(params?: {}): Promise; privateGetUsersWallets(params?: {}): Promise; privateGetUsersWalletsHistorySince(params?: {}): Promise; privateGetExchangeOrdersStatusOrderID(params?: {}): Promise; privateGetExchangeOrdersActive(params?: {}): Promise; privateGetExchangeOrdersHistorySince(params?: {}): Promise; privateGetExchangeFillsSince(params?: {}): Promise; privateGetExchangeMargin(params?: {}): Promise; privatePostJwt(params?: {}): Promise; privatePostJwtDevice(params?: {}): Promise; privatePostDevices(params?: {}): Promise; privatePostJwtReadOnly(params?: {}): Promise; privatePostExchangeOrdersCreate(params?: {}): Promise; privatePostExchangeOrdersModifyOrderID(params?: {}): Promise; privatePostExchangeSwap(params?: {}): Promise; privatePostExchangeSwapConfirmSwapId(params?: {}): Promise; privatePostExchangeOrdersCloseOrderID(params?: {}): Promise; privatePostExchangeOrdersHedge(params?: {}): Promise; privatePutJwt(params?: {}): Promise; privatePutExchangeOrdersCancelOrderID(params?: {}): Promise; privatePutUsersMarginCollateral(params?: {}): Promise; privatePutUsersMarginPrimaryCurrency(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;