export declare function repeatString(str: string, times: number): string; export declare function reverseString(str: string): string; export declare function strEndsWith(str: string, symbol: string): boolean; /** * Adds two paths and returns the result * Correctly processes leading and trailing slashes * @param path1 * @param path2 */ export declare function combinePath(path1: string, path2: string): string;