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