import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for a Nexus notification action */ export declare class NotificationAction implements client.NotificationAction { action: 'notification'; heading: string; text: string; /** * Constructs a new complete notification action from a partial one. * @param {Partial} partialNotification The partial notification action to construct a complete notification action from */ constructor(partialNotification: Partial); }