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

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