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