///
import type { ExecResult } from '../evm';
import type { EVMInterface } from '../types';
import type { Common } from '@nomicfoundation/common';
export interface PrecompileFunc {
(input: PrecompileInput): Promise | ExecResult;
}
export interface PrecompileInput {
data: Buffer;
gasLimit: bigint;
_common: Common;
_EVM: EVMInterface;
}
//# sourceMappingURL=types.d.ts.map