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