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