import { NotificationV1 } from '../data/version1/NotificationV1'; import { IPushNotificationsConnector } from './IPushNotificationsConnector'; import { IOpenable } from 'pip-services3-commons-nodex'; export declare class PushNotificationsSocketIOConnector implements IPushNotificationsConnector, IOpenable { private _opened; isOpen(): boolean; open(correlationId: string): Promise; close(correlationId: string): Promise; send(correlationId: string, notification: NotificationV1): Promise; broadcast(correlationId: string, notification: NotificationV1): Promise; }