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