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