import { Instruction, Serializable } from '../internal.js'; /** * New Instruction. * * Instantiates a new instance of a class. Args are passwed to the constructor. */ export declare class NewInstruction extends Instruction { idx: number; exportIdx: number; argsBuf: Uint8Array; constructor(idx: number, exportIdx: number, argsBuf: Uint8Array); } /** * New Args Serializer object - implements the Serializable interface. */ export declare const NewArgsSerializer: Serializable; //# sourceMappingURL=new.d.ts.map