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