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