import { PartialKeybind } from '../types'; import { IdGenerator } from '../utils'; import * as client from '@keneanung/iron-realms-nexus-typings'; /** * Class for Nexus keybind */ export declare class Keybind implements client.Keybind { name: string; id: number; type: 'keybind'; enabled: boolean; key: number; key_alt: boolean; key_ctrl: boolean; key_shift: boolean; actions: client.Action[]; constructor(partialKeybind: PartialKeybind, idGenerator: IdGenerator, packageDefinitionFile: string); }