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