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