import { Filter } from '../types';
import { RealTimeFeedBase } from './realtimefeed';
export declare class AscendexRealTimeFeed extends RealTimeFeedBase {
    protected readonly wssURL = "wss://ascendex.com/api/pro/v2/stream";
    protected mapToSubscribeMessages(filters: Filter<string>[]): any[];
    protected messageIsError(message: any): boolean;
    protected sendCustomPing: () => void;
    protected messageIsHeartbeat(msg: any): boolean;
    protected provideManualSnapshots(filters: Filter<string>[], shouldCancel: () => boolean): Promise<void>;
}
//# sourceMappingURL=ascendex.d.ts.map