import { Opcode } from "../spec"; import { Instruction } from "./"; export interface WideInstruction extends Instruction { opcode: Opcode.WIDE; insn: Instruction; } export declare const readWide: (insn: Instruction) => WideInstruction; export declare const writeWide: (wideInsn: WideInstruction) => Instruction;