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