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

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