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