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