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