/**
 * @param Returns a string resulting from replacing all the occurrences of pattern in target by repstr
 * @param replaceString
 * @return string
 */
export declare const replaceRegExp: (target: string, pattern: string | RegExp, repstr: string) => string;
