import type { RunState } from '../interpreter'; import type { Common } from '@nomicfoundation/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