/** * Tap will run a function 'on the side' without while passing the iterator * unchanged to the next. * * @param fn * * @category operators/general */ declare const tap: (tapFn: (value: TIn) => void) => import("../../types.js").TTransIteratorSyncOrAsync; export { tap };