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