import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for the Nexus waitFor action */ export declare class WaitForAction implements client.WaitForAction { action: 'waitfor'; text: string; matching: 'substring' | 'begins' | 'regexp' | 'exact'; whole_words: boolean; case_sensitive: boolean; expire: string; /** * Constructs a new complete waitFor action from a partial one. * @param {Partial} partialWaitForAction The partial waitFor action to construct a new complete waitFor action from. */ constructor(partialWaitForAction: Partial); }