/**
 * Simple template engine for event system.
 *
 * @param {String} tplStr - Template string.
 *
 * @return String
 */
declare const templateEngine: (tplStr: any) => string;
export default templateEngine;
