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