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