/** * returns the provided string repeated the specified amount of times * @example * repeat(3, 'test') * // returns 'testtesttest' */ export default function repeat(count: number, text: string): string; //# sourceMappingURL=repeat.d.ts.map