import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for the Nexus wait action */ export declare class WaitAction implements client.WaitAction { action: 'wait'; seconds: string; milliseconds: string; /** * Constructs a new complete wait action from a partial one. * @param {Partial} partialWaitAction The partial wait action to construct a new complete wait action from. */ constructor(partialWaitAction: Partial); }