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