import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for Nexus enable action. */ export declare class EnableAction implements client.EnableAction { action: 'enable'; type: 'group' | 'alias' | 'trigger' | 'keybind' | 'event'; name: string; /** * Constructs a new complete enable action from a partial one. * @param {Partial} partialEnableAction The partial enable action to construct a new complete enable action from. */ constructor(partialEnableAction: Partial); }