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