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