import { TemplateRef } from "@angular/core"; export default class AbstractTemplate { options: Object; template(): Object; getHashCode(): string; render(data: any): TemplateRef | null; constructor(templateType: string, options: Object); }