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