import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for a Nexus notify action. */ export declare class NotifyAction implements client.NotifyAction { action: 'notify'; notice: string; notice_fg: string; notice_bg: string; /** * Constructs a new complete notify object from a partial one. * @param {Partial} partialNotifyAction Partial notify object to construct a new complete one from. */ constructor(partialNotifyAction: Partial); }