export interface HtmlSanitizerConfig { allowedTags?: Set; allowedAttrs?: Set; allowedStyleProps?: Set; allowDataImages?: boolean; } export declare const DEFAULT_ALLOWED_TAGS: Set; export declare const DEFAULT_ALLOWED_ATTRS: Set; export declare const DEFAULT_ALLOWED_STYLE_PROPS: Set; export declare function sanitizeHtml(html: string, userConfig?: HtmlSanitizerConfig): string;