/** * given a template this function will render that template to an html. * * Created October 10th, 2020 * @version: 0.2.0 * @copyright: Nerdeez Ltd * @author: ywarezk */ interface HbsOptions { template: string; context?: any; } /** * Will return a rendered html * Can be rejected if the rendering will fail or the template does not exist * @param options */ export declare function templateToHtml(options: HbsOptions): Promise; export {};