/** * * multi condition replace * * @example * ``` * const inputString = "Hello world, this is a test string."; * const replacements: [RegExp, string][] = [ * [/Hello/g, "Hi"], * [/\btest\b/g, "example"], * [/string/g, "text"], * ]; * const outputString = multiReplace(inputString, replacements); * console.log(outputString); * ``` * * @param replacements * @returns */ export declare function multiReplace(inputString: string, replacements: [RegExp, string][]): string;