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