/** * Creates an iterable containing a single value. * * @template T The type of the value. * @param {T} item The value to wrap in an iterable. * @returns {Iterable} An iterable containing the single value. */ export declare const fromSingleValue: (item: T) => Iterable;