/**
 * Repeat a given string a number of times
 * @param str String that will be repeated
 * @param n Number of times to repeat the given string
 * @return The given string repeated n times
 */
export declare function repeat(str: string, n: number): string;
