import { AnyObject } from "../interface/object";
export declare class TemplateEngine {
    static compile(template: string, context?: AnyObject): any;
    static renderString(template: string, context?: object): string;
    static getTemplate(templatePath: string): string;
    static renderFile(templatePath: string, context?: AnyObject): string;
}
