export = ServerNotification; /** * Creates a notification response from a given room, request object, and content. * * @class ServerNotification * @param {Request} request - the request object from which the notification is issued * @param {string} type - Notification type * @param {string} message - Notification message */ declare class ServerNotification { constructor(type: any, message: any); status: number; info: string; message: any; type: any; node: string; }