/** * Repeats the given string `s`, `n` times. * * @example * repeatStr('-', 5) // "-----" */ export declare const repeatStr: (s: string, n: number) => string; export declare const createPadder: (n: number) => (s: string) => string;