export = UserNotification; /** * User notification document * * @class UserNotification */ declare class UserNotification { /** * Instantiates a UserNotification object from a KuzzleRequest * @param {Request} request - the request object from which the notification is issued * @param {string} user - The scope of the notification (in or out) * @param {object} content - Notification content * returns {UserNotification} */ static fromRequest(request: Request, user: string, result: any): UserNotification; constructor(opts: any); type: string; status: any; user: any; result: any; node: any; timestamp: any; volatile: any; index: any; collection: any; controller: any; action: any; protocol: any; }