import { AvmMachineState } from '../avm_machine_state.js'; import { AvmInterpreterError } from '../interpreter/interpreter.js'; import { AvmJournal } from '../journal/journal.js'; import { Instruction } from './instruction.js'; export declare class SStore extends Instruction { private slotOffset; private dataOffset; static type: string; static numberOfOperands: number; constructor(slotOffset: number, dataOffset: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } export declare class SLoad extends Instruction { private slotOffset; private dstOffset; static type: string; static numberOfOperands: number; constructor(slotOffset: number, dstOffset: number); execute(machineState: AvmMachineState, journal: AvmJournal): Promise; } /** * Error is thrown when a static call attempts to alter storage */ export declare class StaticCallStorageAlterError extends AvmInterpreterError { constructor(); } //# sourceMappingURL=storage.d.ts.map