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