/** * Do an es6 like template rendering during runtime. * It only replaces properties available in the context, it does not execute any JS * @param string template that looks like an es6 template string * @param context An object that provides the values for the template, or an callback fn that returns an object. */ export declare function renderTemplate(unhandledRoute: string, context: any): string;