/**
 * Repeat a given piece of text a {@link count} times
 * @example "ABC_" repeated 2 times results in "ABC_ABC_"
 * @param {string} what
 * @param {number} count
 * @return {string}
 */
export function string_repeat(what: string, count: number): string;
//# sourceMappingURL=string_repeat.d.ts.map