export declare function escapeHtml(html: string): string;
export declare function htmlOpen(tagName: string, attrs?: any): string;
export declare function htmlClose(tagName: string): string;
export declare function wrapHtml(tagName: string, content?: string, attrs?: any): string;
export declare function wrapStyle(text: string, style: any): string;