import { Opcode } from "../spec"; import { Instruction } from "./"; export interface PushInstruction extends Instruction { opcode: Opcode.BIPUSH | Opcode.SIPUSH; value: number; } export declare const readPush: (insn: Instruction) => PushInstruction; export declare const writePush: (insn: PushInstruction) => Instruction;