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