// No @types/sanitize-html package exists on the registry; minimal ambient
// declaration covering the surface src/lib/markdown.ts actually uses
// (the default sanitize function + the IOptions bag passed to it).
declare module "sanitize-html" {
  namespace sanitizeHtml {
    interface IOptions {
      [key: string]: any;
    }
  }
  function sanitizeHtml(html: string, options?: sanitizeHtml.IOptions): string;
  export = sanitizeHtml;
}
