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