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