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