import type { Snippet } from 'svelte';
type $$ComponentProps = {
    children?: Snippet;
    tag: string;
    attributes?: Record<string, string>;
};
/** Placeholder component rendered for blocked HTML tags. Displays the tag and content as escaped text. */
declare const UnsupportedHTML: import("svelte").Component<$$ComponentProps, {}, "">;
type UnsupportedHTML = ReturnType<typeof UnsupportedHTML>;
export default UnsupportedHTML;
