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