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