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