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