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