import { Opcode } from "../spec"; import { Instruction } from "./"; export interface ConstantInstruction extends Instruction { opcode: Opcode.LDC | Opcode.LDC_W | Opcode.LDC2_W; index: number; } export declare const readLdc: (insn: Instruction) => ConstantInstruction; export declare const writeLdc: (insn: ConstantInstruction) => Instruction;