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