import React, { type JSX, ComponentType } from 'react'; interface RegistryComponentProps { children?: React.ReactNode; [key: string]: any; } type ComponentsRegistry = Record>; export declare const componentsRegistry: ComponentsRegistry; export interface SafeHTMLProps { content: string; Tag?: keyof JSX.IntrinsicElements; } export declare const SafeHTML: ({ content, Tag, ...props }: SafeHTMLProps) => JSX.Element; export default SafeHTML;