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