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