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