import { Wrappable as SyncWrappable } from '../../types/iterable'; import { AsyncWrappable, AsyncIterableIterator } from '../../types/async-iterable'; declare function asyncJoinWithSeq(seq: SyncWrappable, source: AsyncWrappable>): AsyncIterableIterator; declare function asyncJoinWithSeq(seq: SyncWrappable): (source: AsyncWrappable>) => AsyncIterableIterator; export { asyncJoinWithSeq };