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