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