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