/**
 * array.utils
 */
/** Creates an array and fills it with values. */
export declare function range<T>(length: number, valueFunction: (index: number) => T): T[];
