import type { VideoDataSubtitle } from "@vot.js/core/types/client"; import type { MinimalVideoData } from "../types/client.js"; import type { BasePlayer } from "./base.js"; export default class PlyrHelper implements BasePlayer { SUBTITLE_SOURCE: string; SUBTITLE_FORMAT: VideoDataSubtitle["format"]; getPlayer(): any; getVideoData(videoId: string): MinimalVideoData | undefined; getSubtitles(): VideoDataSubtitle[]; } //# sourceMappingURL=plyr.d.ts.map