import { ArrayCode, Opcode } from "../spec"; import type { Instruction } from "./"; export interface ArrayInstruction extends Instruction { opcode: Opcode.ANEWARRAY | Opcode.NEWARRAY | Opcode.MULTIANEWARRAY; type: number | ArrayCode; dimensions: number; } export declare const readArray: (insn: Instruction) => ArrayInstruction; export declare const writeArray: (insn: ArrayInstruction) => Instruction;