import type { Account } from "@ledgerhq/types-live"; export type WaitForConfirmationOpts = { timeoutMs?: number; pollIntervalMs?: number; }; /** * Wait until an EVM transaction is confirmed on-chain (included in a block). * No-op for non-EVM accounts. * * @param account - main account (currency used to resolve node API) * @param hash - transaction hash returned from broadcast * @param opts - optional timeout and poll interval * @throws if timeout is reached before confirmation */ export declare function waitForTransactionConfirmation(account: Account, hash: string, opts?: WaitForConfirmationOpts): Promise; //# sourceMappingURL=waitForConfirmation.d.ts.map