/**
 * Maps the source objects to their values at the path specified
 */
export declare function pluck<TFrom, TTo = any>(...path: string[]): (source: AsyncIterable<TFrom>) => AsyncGenerator<TTo, void, unknown>;
