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