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