import { type SendUserOperationParameters, type SmartContractAccount } from "@aa-sdk/core"; import type { Chain, Client, Transport } from "viem"; import type { AlchemyRpcSchema } from "../client/types.js"; import type { SimulateUserOperationAssetChangesResponse } from "./types.js"; /** * Simulates user operation changes including asset changes for a specified user operation and returns the resulting state changes. * * @example * ```ts * import { simulateUserOperationChanges, createAlchemyPublicRpcClient } from "@account-kit/infra"; * * const client = createAlchemyPublicRpcClient(...); * const response = await simulateUserOperationChanges(client, { * uo: ... * }); * ``` * * @param {Client} client The client instance used to send the simulation request * @param {SendUserOperationParameters} args The parameters of the user operation including the account and other overrides * @returns {Promise} A promise that resolves to the response of the simulation showing the asset changes */ export declare const simulateUserOperationChanges: (client: Client, args: SendUserOperationParameters) => Promise; //# sourceMappingURL=simulateUserOperationChanges.d.ts.map