import { Filter } from '../types';
import { RealTimeFeedBase } from './realtimefeed';
export declare class PoloniexRealTimeFeed extends RealTimeFeedBase {
    protected readonly wssURL = "wss://ws.poloniex.com/ws/public";
    protected mapToSubscribeMessages(filters: Filter<string>[]): {
        event: string;
        channel: string[];
        symbols: string[];
    }[];
    protected sendCustomPing: () => void;
    protected messageIsHeartbeat(msg: any): boolean;
    protected messageIsError(message: any): boolean;
}
//# sourceMappingURL=poloniex.d.ts.map