export default class Template { private views; private globals; private cache; private templates; private debug; constructor(); setDebug(debug: boolean): void; setViews(views: string): void; setGlobals(globals: Record): void; setCache(cache: boolean): void; private readdir; private getTemplate; render(file: string, data?: Record, locals?: Record): string; escape(str: string): string; forEach(o: any, f: (value: any, key: string | number) => void): void; getMtime(file: string): number; }