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