declare type FillPredicate = number | ((idx: number) => number); /** * Creates an array and fills it with the specified value * * @export * @param {number} count the number of elements the array should contain * @param {FillPredicate} predicateOrValue the fill predicate * @returns { number[] } the array with the requested value */ export declare function fillWith(count: number, predicateOrValue: FillPredicate): any[]; export {};