import { type DynamicClient } from '@dynamic-labs-sdk/client'; import type { ConfirmTransactionParams } from '@dynamic-labs-sdk/client/core'; /** * Waits for an EVM transaction to be confirmed on-chain. * * @param params.transactionHash - The transaction hash to wait for. * @param params.walletAccount - The EVM wallet account used to resolve the active network. * @param client - The Dynamic client instance. * @not-instrumented */ export declare const evmConfirmTransaction: ({ transactionHash, walletAccount }: ConfirmTransactionParams, client: DynamicClient) => Promise; //# sourceMappingURL=evmConfirmTransaction.d.ts.map