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