import { EvmBytecode } from '../EvmBytecode'; import Opcode from '../interfaces/IOpcode'; export declare class MOD { readonly name: string; readonly type?: string; readonly wrapped: boolean; readonly left: any; readonly right: any; constructor(left: any, right: any); toString(): string; } declare const _default: (opcode: Opcode, state: EvmBytecode) => void; export default _default;