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