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