/**
 * Check if string contains html elements
 * @param str - string to check
 * @returns true if str is an html string, false otherwise
 */
export declare function isHTMLString(str: string): boolean;
