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