import ripioRest from '../ripio.js'; import { Int } from '../base/types.js'; import Client from '../base/ws/Client.js'; export default class ripio extends ripioRest { describe(): any; watchTrades(symbol?: string, since?: Int, limit?: Int, params?: {}): Promise; handleTrade(client: Client, message: any, subscription: any): any; watchTicker(symbol: string, params?: {}): Promise; handleTicker(client: Client, message: any, subscription: any): any; watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise; fetchOrderBookSnapshot(client: any, subscription: any): Promise; handleOrderBook(client: Client, message: any, subscription: any): any; handleOrderBookMessage(client: Client, message: any, orderbook: any): any; handleDelta(bookside: any, delta: any): void; handleDeltas(bookside: any, deltas: any): void; ack(client: any, messageId: any): Promise; handleMessage(client: Client, message: any): any; }