export declare const convertTemplateToHTML: (template: any, data: any) => string;
export declare const safeTemplate: (template: string, data: any, notReplace?: boolean, replaceQuote?: boolean) => any;
export declare const generateHtmlFromTemplate: (template: any | any[], body: string, pageStyle: string) => string;
export declare const generateStylesheet: (template: any, suffix: string) => string;
export declare const generateHtmlPage: (body: string, header: string, footer: string, suffix: string) => string;