import { Wrappable, IterableIterator } from '../../types/iterable'; declare function roundRobin(...sources: Array>): IterableIterator; declare function roundRobin(step: number, ...sources: Array>): IterableIterator; declare function roundRobin(start: number, step: number, ...sources: Array>): IterableIterator; declare function roundRobin(options: { start?: number; step?: number; }, ...sources: Array>): IterableIterator; declare function roundRobin(step: number): (...sources: Array>) => IterableIterator; declare function roundRobin(start: number, step: number): (...sources: Array>) => IterableIterator; declare function roundRobin(options: { start?: number; step?: number; }): (...sources: Array>) => IterableIterator; export { roundRobin };