/** * Allows an iterable to be shared by multiple consumers. * Each consumer takes from the iterable. * @param iterable - the iterable to share */ export declare function toDistributableIterableSync(iterable: Iterable): Iterable; /** * Allows an iterable to be shared by multiple consumers. * Each consumer takes from the iterable. * @param iterable - the iterable to share */ export declare const toDistributableIterable: typeof toDistributableIterableSync; //# sourceMappingURL=distribute.d.ts.map