import { NotifyPayload } from './customer-websocket.model'; import { AxiosInstance } from 'axios'; /** * @deprecated */ export declare class CustomerWebsocketService { private readonly logger; url: any; apiKey: any; client: AxiosInstance; constructor(); private getWebSocketClient; notifyGetRewards(ids: string[]): void; notifyMessage(ids: string[], message: string, color?: string): void; notify({ topicId, data }: NotifyPayload): Promise; }