import { AvmMachineState } from '../avm_machine_state.js'; import { AvmJournal } from '../journal/journal.js'; import { Instruction } from './instruction.js'; export declare class EmitNoteHash extends Instruction { private noteHashOffset; static type: string; static numberOfOperands: number; constructor(noteHashOffset: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } export declare class EmitNullifier extends Instruction { private nullifierOffset; static type: string; static numberOfOperands: number; constructor(nullifierOffset: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } export declare class EmitUnencryptedLog extends Instruction { private logOffset; private logSize; static type: string; static numberOfOperands: number; constructor(logOffset: number, logSize: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } export declare class SendL2ToL1Message extends Instruction { private msgOffset; private msgSize; static type: string; static numberOfOperands: number; constructor(msgOffset: number, msgSize: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } //# sourceMappingURL=accrued_substate.d.ts.map