/// import { Engine as BaseEngine } from 'basic-kodyfire'; export declare class Engine extends BaseEngine { builder: any; constructor(); read(path: string, templateName: any): Promise; getPartial(path: string, template: string, data: any): Promise; compile(template: any, data: any): any; create(rootDir: string, outputDir: string, filename: any, content: string | Buffer): Promise; overwrite(rootDir: string, outputDir: string, filename: any, content: string | Buffer): Promise; createOrOverwrite(rootDir: string, outputDir: string, filename: any, content: string | Buffer, overwrite?: boolean): Promise; setContent(filename: any, content: string | Buffer): string | Buffer; getFiles(rootDir: string, outputDir: string): Promise; }