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