import type { Components, JSX } from "../types/components";

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