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