/**
 * Replace string(s) with the replacement(s) in the source.
 */
declare function replace(str: any, search: any, replacements: any): any;
export default replace;
