import { LitElement } from "lit"; export default class DocVideo extends LitElement { static styles: import("lit").CSSResult; static properties: { src: { type: StringConstructor; }; }; src: string; render(): import("lit").TemplateResult<1>; getPlayer(): "local" | "youtube" | "loom" | "unknown"; /** * Converts a YouTube video URL to an embed URL. * @param {string} url - The YouTube video URL. * @returns {string} - The YouTube embed URL. */ getYouTubeEmbedUrl(url: string): string; /** * Extracts the video ID from a YouTube URL. * @param {string} url - The YouTube video URL. * @returns {string} - The YouTube video ID. */ extractYouTubeVideoId(url: string): string; }