import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for nexus command actions. */ export declare class CommandAction implements client.CommandAction { action: 'command'; command: string; prefix_suffix: boolean; /** * Constructs a new complete command action from a partial one. * @param {Partial} partialCommandAction Partial command action to construct a new command action from. */ constructor(partialCommandAction: Partial); }