/** * Sanitize HTML to prevent XSS attacks * Use this before rendering user-generated content with v-html * * @example *
*/ export declare const sanitizeHtml: (html: string) => string; export default sanitizeHtml;