import type { Components, JSX } from "../types/components";

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