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

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