import { Writable } from 'stream'; import { Filter } from '../types.ts'; import { MultiConnectionRealTimeFeedBase, PoolingClientBase, RealTimeFeedBase } from './realtimefeed.ts'; export declare class KucoinFuturesRealTimeFeed extends MultiConnectionRealTimeFeedBase { private _httpURL; protected _getRealTimeFeeds(exchange: string, filters: Filter[], timeoutIntervalMS?: number, onError?: (error: Error) => void): Generator; } export declare class KucoinFuturesSingleConnectionRealTimeFeed extends RealTimeFeedBase { private readonly _httpURL; constructor(exchange: string, filters: Filter[], _httpURL: string, timeoutIntervalMS: number | undefined, onError?: (error: Error) => void); protected wssURL: string; protected getWebSocketUrl(): Promise; protected mapToSubscribeMessages(filters: Filter[]): any[]; protected provideManualSnapshots(filters: Filter[], shouldCancel: () => boolean): Promise; protected messageIsError(message: any): boolean; protected sendCustomPing: () => void; protected messageIsHeartbeat(msg: any): boolean; } declare class KucoinFuturesContractDetailsClient extends PoolingClientBase { private readonly _httpURL; constructor(exchange: string, _httpURL: string); protected poolDataToStream(outputStream: Writable): Promise; } export {}; //# sourceMappingURL=kucoinfutures.d.ts.map