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