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