import { Socket } from 'socket.io-client';
export default class AlertsService {
    _client: Socket;
    _streamIdentifier: string;
    constructor();
    setStreamIdentifier(streamIdentifier: string): void;
    on(event: string, callback: any): void;
}
