export declare function escapeRegex(s: string): string; /** * Removes an HTML attribute and its value from a template string. * Handles bound (`[attr]="..."`) and unbound (`attr="..."` or `attr`) forms. */ export declare function removeHtmlAttribute(content: string, attrName: string): string;