import { Dom } from "dom-parser"; import { BaseHelper } from "./base.js"; export default class IgnHelper extends BaseHelper { getVideoDataByScriptData(doc: Dom): { url: string; title: string; description: string; }; getVideoDataByNext(doc: Dom): { url: string; duration: number; title: string; description: string; }; getVideoDataByIcms(doc: Dom): { url: string; title: string; isStream: boolean; }; getVideoData(videoId: string): Promise<{ url: string; title: string; isStream: boolean; } | { url: string; title: string; description: string; } | { url: string; videoId: string; host: import("@vot.js/core/types/service").VideoService; duration: undefined; } | undefined>; getVideoId(url: URL): Promise; } //# sourceMappingURL=ign.d.ts.map