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