export interface ITemplateRenderer { sharedScope: any; compile(templateName: string, templateContent: string): any; render(templateName: string, templateScope: any, helperScope?: any): any; }