/** * Creates an infinite iterable that yields `undefined` values. * * @group Iterable factories * @returns {Iterable} An iterable that continuously yields `undefined`. * * @example * ```ts * for (const value of voidIterable()) { * console.log(value); // Logs `undefined` indefinitely * } * ``` */ export declare const voidIterable: () => Iterable;