/**
 * Replace items in string based on given object
 * Ex: multiReplaceNamed("Hello %World%!",{"%World%":"Joe"}) => Hello Joe!
 * @param  str String to be replaced
 * @param  params Object with items to replace
 * @returns  String with items replaced
 */
export declare function multiReplaceNamed(str: string, params: {
    [key: string]: unknown;
}): string;
