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