import { type Chain, type Client, type Transport } from "viem"; import type { SmartAccount } from "viem/account-abstraction"; import type { CombinedIntentRpcSchema } from "../client/intentClient.js"; import type { INTENT_VERSION_TYPE } from "../types/intent.js"; import type { GetUserIntentExecutionReceiptResult, GetUserIntentReceiptParameters } from "./types.js"; /** * Gets the execution receipt of a user intent. * * @param client - Client to use * @param parameters - {@link GetUserIntentReceiptParameters} * @returns The execution receipt of the user intent. {@link GetUserIntentExecutionReceiptResult} */ export declare function getUserIntentExecutionReceipt(client: Client, parameters: GetUserIntentReceiptParameters, version: INTENT_VERSION_TYPE): Promise; //# sourceMappingURL=getUserIntentExecutionReceipt.d.ts.map