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