/** * Generates an array of integers between two bounds. Exclusive on the right. * * @param start Integer to start at. * @param stop Integer to stop at (exclusive). */ export declare const range: (start: number, stop: number) => number[]; //# sourceMappingURL=range.d.ts.map