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