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