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