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