import type { Address } from 'abitype'; import type { Hash } from '../../../types/misc.js'; import type { EntryPointVersion } from '../../types/entryPointVersion.js'; import type { UserOperation } from '../../types/userOperation.js'; export type GetUserOperationHashParameters = { chainId: number; entryPointAddress: Address; entryPointVersion: entryPointVersion | EntryPointVersion; userOperation: UserOperation; }; export type GetUserOperationHashReturnType = Hash; export declare function getUserOperationHash(parameters: GetUserOperationHashParameters): GetUserOperationHashReturnType; //# sourceMappingURL=getUserOperationHash.d.ts.map