import type { RunState } from '../interpreter.js'; import type { Common } from '@nomicfoundation/ethereumjs-common'; export interface SyncOpHandler { (runState: RunState, common: Common): void; } export interface AsyncOpHandler { (runState: RunState, common: Common): Promise; } export declare type OpHandler = SyncOpHandler | AsyncOpHandler; export declare const handlers: Map; //# sourceMappingURL=functions.d.ts.map