import type { IParallelEnumerable } from "../types/index.js"; /** * Determine if the source is IParallelEnumerable * @param source Any value * @returns Whether or not this type is a Parallel Enumerable */ export declare const isParallelEnumerable: (source: any) => source is IParallelEnumerable;