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