/**
 * Repeat string n times
 */
declare function repeat(str: any, n: any): string;
export default repeat;
