import { Opcode } from "../spec"; import { type Instruction } from "./"; export interface TypeInstruction extends Instruction { opcode: Opcode.CHECKCAST | Opcode.INSTANCEOF | Opcode.NEW; index: number; } export declare const readType: (insn: Instruction) => TypeInstruction; export declare const writeType: (insn: TypeInstruction) => Instruction;