import type { Chain, Client, 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 { GetUserIntentFillReceiptResult, 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 GetUserIntentFillReceiptResult} */ export declare function getUserIntentFillReceipt(client: Client, parameters: GetUserIntentReceiptParameters, version: INTENT_VERSION_TYPE): Promise; //# sourceMappingURL=getUserIntentFillReceipt.d.ts.map