import { AsyncSequence } from "../../sequency"; export declare class MapNotNull { /** * Transforms each element into another value by applying the given `transform` function and returns a new sequence. * Transformations into `null` or `undefined` values are discarded. * * @param {(value: T) => Promise | R | null | undefined} transform * @returns {AsyncSequence>} */ mapNotNull(this: AsyncSequence, transform: (value: T) => Promise | R | null | undefined): AsyncSequence>; }