import { Instruction } from './instruction.js'; import { Opcode } from './opcodes.js'; type InstructionConstructor = new (...args: any[]) => Instruction; type InstructionConstructorAndMembers = InstructionConstructor & { numberOfOperands: number; }; export declare const INSTRUCTION_SET: Map; export {}; //# sourceMappingURL=instruction_set.d.ts.map