import { Opcode } from "../spec"; import { Instruction } from "./"; export interface IncrementInstruction extends Instruction { opcode: Opcode.IINC; index: number; const: number; } export declare const readIinc: (insn: Instruction) => IncrementInstruction; export declare const writeIinc: (insn: IncrementInstruction) => Instruction;