import { TLong } from '../../interface'; import { Transaction, WithApiMixin } from '@waves/ts-types'; export default function & WithApiMixin>(base: string, tx: T, options?: IWaitOptions): Promise; export default function & WithApiMixin>(base: string, list: Array, options?: IWaitOptions): Promise>; export default function & WithApiMixin>(base: string, tx: T | Array, options?: IWaitOptions): Promise>; export interface IWaitOptions { confirmations?: number; maxWaitTime?: number; requestInterval?: number; }