import { type Asyncable, type Asyncerator } from '../asyncerator'; /** * Combine the output of iterators in a series. Requires all the iterators to complete. * * @param iterators */ export default function (...iterators: Asyncable[]): Asyncerator;