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

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