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