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