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