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