/**
 * An equivalent of lodash.array_fill(...).
 *
 * @author Ikaros Kappler
 * @date 2020-10-23
 * @version 1.0.0
 **/
export declare const arrayFill: <T extends unknown>(count: number, initialValue: T) => T[];
