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