/**
 * Create an array of size N and fill with a value.
 * This function will throw an exception in case
 * you pass a negative number.
 */
declare function repeat(n: any, value: any): any[];
export default repeat;
