import { Client } from '.'; export interface pug { renderFile(path: string, options?: {}, callback?: Function): string; } export interface mustache { render(path: string, options?: {}, callback?: Function): string; } export interface handlebars { compile(path: string, options?: {}, callback?: Function): string; } export declare class Template { private static _root; static readonly root: string; static setTemplatesRoot(path: string): void; static render(client: Client): Promise; }