import { SafeInteger } from "../../numbers/typing"; /** * Generates a sequence of integral numbers within a specified range. * @param start value of the first integer in the sequence. * @param count number of sequential integers to generate. * @remarks * Both `start` and `count` will be truncated into integer, and they should be within * the safe integer range. */ export declare function range(start: SafeInteger, count: SafeInteger): Iterable; //# sourceMappingURL=range.d.ts.map