/// import { type Config } from 'dompurify'; import { type TBaseProps } from '../types'; export declare type AllowedDomains = string[]; export declare type Csp = Config & { ALLOWED_DOMAINS: AllowedDomains; }; export declare type Props = TBaseProps & { html: string; id: string; csp?: Csp; }; export declare const Html: ({ id, html, className, csp }: Props) => JSX.Element; export default Html;