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