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