import { Instruction, Serializable } from '../internal.js'; /** * Call Instruction. * * Calls an instance method on a Jig. Args are passwed to the constructor. */ export declare class CallInstruction extends Instruction { idx: number; methodIdx: number; argsBuf: Uint8Array; constructor(idx: number, methodIdx: number, argsBuf: Uint8Array); } /** * Call Args Serializer object - implements the Serializable interface. */ export declare const CallArgsSerializer: Serializable; //# sourceMappingURL=call.d.ts.map