import { default as React } from 'react'; import { HtmlSanitizerConfig } from './htmlSanitizer'; export interface HtmlPreviewProps { value: string; className?: string; sanitize?: (html: string) => string; sanitizerConfig?: HtmlSanitizerConfig; emptyFallback?: React.ReactNode; openLinksInNewTab?: boolean; } export declare const HtmlPreview: React.NamedExoticComponent>;