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