import { type Address, type Hex } from "viem"; import { type CallType, type ExecutionMode } from "../actions/erc7579/supportsExecutionMode.js"; export type EncodeCallDataParams = { mode: ExecutionMode; callData: readonly { to: Address; value?: bigint | undefined; data?: Hex | undefined; }[]; }; export declare function encode7579Calls({ mode, callData }: EncodeCallDataParams): Hex; //# sourceMappingURL=encode7579Calls.d.ts.map