import { BoxProps } from '@mantine/core'; import { ReactNode } from 'react'; interface SanitizedHtmlProps extends Omit { html?: string | null; fallback?: ReactNode; } export declare function SanitizedHtml({ html, fallback, ...boxProps }: SanitizedHtmlProps): import("react/jsx-runtime").JSX.Element; export {};