import type { Range } from "../../types"; /** * Creates an iterable that yields integers in order in the provided range. * * @group Iterable factories * @param {Range} range - A range [from, to] specifying the range of integers to generate. * @returns {Iterable} An iterable of integers in the specified range. * * @example * ```ts * for (const n of range([0, 100])) { * console.log(n); // Logs integers from 0 to 100 (inclusive) * } * ``` */ export declare const range: ([from, to]: Range) => Iterable;