export declare class Reset { /** * Get the most recent KioskRecord * @example * ```javascript * eflyn.reset.resetPlayer(reason, options); * ``` */ resetPlayer(reason: string, options?: { messageHtml?: string; resetTimer?: number; }): Promise; /** * Get the most recent KioskRecord * @example * ```javascript * eflyn.reset.lock(reason); * ``` */ lock(reason: string): Promise; /** * Get the most recent KioskRecord * @example * ```javascript * eflyn.reset.unlock(reason); * ``` */ unlock(reason: string): Promise; /** * Get the most recent KioskRecord * @example * ```javascript * eflyn.reset.resetTimeout(reason); * ``` */ resetTimeout(reason: any): Promise; }