import { type Address, type Hex } from "viem"; import { type EntryPointVersion, type UserOperation } from "viem/account-abstraction"; export type GetPimlicoEstimationCallDataParams = { userOperation: UserOperation; entrypoint: { address: Address; version: entryPointVersion; }; } & (entryPointVersion extends "0.6" ? { estimationAddress: never; } : { estimationAddress?: Address; }); export declare function getPimlicoEstimationCallData(args: GetPimlicoEstimationCallDataParams): { to: Address; data: Hex; }; //# sourceMappingURL=getEstimationCallData.d.ts.map