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