import type {IntoInterator} from './types'; type MapFunction = (item: S) => T; export default function map( target: IntoInterator, predicate: MapFunction ): IterableIterator;