import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetV2UserApiExchangeMarkets(params?: {}): Promise; publicGetV2UserApiExchangeMarketPrice(params?: {}): Promise; publicGetV1ExchangeMarketAssets(params?: {}): Promise; publicGetV1ExchangeMarketOrderBookCurrencyPair(params?: {}): Promise; publicGetV1ExchangeMarketTickers(params?: {}): Promise; publicGetV1ExchangeMarketTradesCurrencyPair(params?: {}): Promise; privateGetV2UserApiExchangeOrders(params?: {}): Promise; privateGetV2UserApiExchangeOrdersHistory(params?: {}): Promise; privateGetV2UserApiExchangeAccountBalance(params?: {}): Promise; privateGetV2UserApiExchangeAccountTariffs(params?: {}): Promise; privateGetV2UserApiPaymentServices(params?: {}): Promise; privateGetV2UserApiPayoutServices(params?: {}): Promise; privateGetV2UserApiTransactionList(params?: {}): Promise; privatePostV2UserApiExchangeOrders(params?: {}): Promise; privatePostV2UserApiExchangeOrdersMarket(params?: {}): Promise; privateDeleteV2UserApiExchangeOrdersOrderId(params?: {}): Promise; } declare abstract class Exchange extends _Exchange { } export default Exchange;