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