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