import bittrexRest from '../bittrex.js'; import { Int } from '../base/types.js'; import Client from '../base/ws/Client.js'; export default class bittrex extends bittrexRest { describe(): any; getSignalRUrl(negotiation: any): string; makeRequest(requestId: any, method: any, args: any): { H: string; M: any; A: any; I: any; }; makeRequestToSubscribe(requestId: any, args: any): { H: string; M: any; A: any; I: any; }; makeRequestToAuthenticate(requestId: any): { H: string; M: any; A: any; I: any; }; requestId(): any; sendRequestToSubscribe(negotiation: any, messageHash: any, subscription: any, params?: {}): Promise; authenticate(params?: {}): Promise; sendRequestToAuthenticate(negotiation: any, expired?: boolean, params?: {}): Promise; sendAuthenticatedRequestToSubscribe(authentication: any, messageHash: any, params?: {}): Promise; handleAuthenticate(client: Client, message: any, subscription: any): void; handleAuthenticationExpiringHelper(): Promise; handleAuthenticationExpiring(client: Client, message: any): void; createSignalRQuery(params?: {}): any; negotiate(params?: {}): Promise; start(negotiation: any, params?: {}): Promise; watchOrders(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise; subscribeToOrders(authentication: any, params?: {}): Promise; handleOrder(client: Client, message: any): void; watchBalance(params?: {}): Promise; subscribeToBalance(authentication: any, params?: {}): Promise; handleBalance(client: Client, message: any): void; watchHeartbeat(params?: {}): Promise; subscribeToHeartbeat(negotiation: any, params?: {}): Promise; handleHeartbeat(client: Client, message: any): void; watchTicker(symbol: string, params?: {}): Promise; subscribeToTicker(negotiation: any, symbol: any, params?: {}): Promise; handleTicker(client: Client, message: any): void; watchOHLCV(symbol: string, timeframe?: string, since?: Int, limit?: Int, params?: {}): Promise; subscribeToOHLCV(negotiation: any, symbol: any, timeframe?: string, params?: {}): Promise; handleOHLCV(client: Client, message: any): void; watchTrades(symbol: string, since?: Int, limit?: Int, params?: {}): Promise; subscribeToTrades(negotiation: any, symbol: any, params?: {}): Promise; handleTrades(client: Client, message: any): void; watchMyTrades(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise; subscribeToMyTrades(authentication: any, params?: {}): Promise; handleMyTrades(client: Client, message: any): void; watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise; subscribeToOrderBook(negotiation: any, symbol: any, limit?: Int, params?: {}): Promise; fetchOrderBookSnapshot(client: any, message: any, subscription: any): Promise; handleSubscribeToOrderBook(client: Client, message: any, subscription: any): void; handleDelta(bookside: any, delta: any): void; handleDeltas(bookside: any, deltas: any): void; handleOrderBook(client: Client, message: any): void; handleOrderBookMessage(client: Client, message: any, orderbook: any): any; handleSystemStatusHelper(): Promise; handleSystemStatus(client: Client, message: any): any; handleSubscriptionStatus(client: Client, message: any): any; handleMessage(client: Client, message: any): void; }