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