import type { Components, JSX } from "../types/components"; interface CodeSnippet extends Components.CodeSnippet, HTMLElement {} export const CodeSnippet: { prototype: CodeSnippet; new (): CodeSnippet; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;