import { AlgodClient } from './client/v2/algod/algod.js'; import { PendingTransactionResponse } from './client/v2/algod/models/types.js'; /** * Wait until a transaction has been confirmed or rejected by the network, or * until 'waitRounds' number of rounds have passed. * @param client - An Algodv2 client * @param txid - The ID of the transaction to wait for. * @param waitRounds - The maximum number of rounds to wait for. * @returns A promise that, upon success, will resolve to the output of the * `pendingTransactionInformation` call for the confirmed transaction. */ export declare function waitForConfirmation(client: AlgodClient, txid: string, waitRounds: number): Promise;