import type DOMPurify from 'dompurify'; import type { Config } from 'dompurify'; import type { IOptions } from 'sanitize-html'; export type Sanitize = (html: string, options?: { sanitizeHtml?: IOptions; dompurify?: Omit; hook?: (dompurify: typeof DOMPurify) => void; }) => string;