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