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