interface IParams { folderPath: string; fileName: string; data: any; options?: any; } /** 渲染ejs模板文件 */ export declare const renderTemplate: (params: IParams) => Promise; export {};