export declare class Template { html: string; placeholders: object; options: object; info: object; private rendered; constructor(html: string, placeholders?: {}, options?: {}, info?: {}); render(): string; static htmlEntities(str: any): string; private replacePlaceholders; private injectHTML; private injectJSVar; private injectJSFile; private injectCSSFile; private wrapForm; }