import type { Components, JSX } from "../types/components";

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