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