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

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