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