import type { Wallet } from "../interfaces/wallet.js"; import type { WalletSendCallsId } from "./types.js"; type ShowCallsStatusOptions = { wallet: Wallet; id: WalletSendCallsId; }; /** * Request a wallet to show the status of a bundle of calls. * * Note: This function is dependent on the wallet's support for EIP-5792 and could fail. It is currently not supported with in-app or smart wallets. * * @param {ShowCallsStatusOptions} options * @param {Wallet} options.wallet - The wallet to show the status of the calls for. * @param {WalletSendCallsId} options.bundleId - The bundle ID of the calls to show the status of. * @returns {Promise} * * @beta * @example * ```ts * import { createThirdwebClient } from "thirdweb"; * import { showCallsStatus } from "thirdweb/wallets/eip5792"; * * const client = createThirdwebClient({ clientId: ... }); * * const bundleId = await sendCalls({ wallet, client, calls }); * await showCallsStatus({ wallet, bundleId }); * ``` * @extension EIP5792 * @internal */ export declare function showCallsStatus({ wallet, id, }: ShowCallsStatusOptions): Promise; export {}; //# sourceMappingURL=show-calls-status.d.ts.map