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