export interface Subtitle { start: string; dur: string; text: string; } interface Options { videoID: string; lang?: string; } export interface VideoDetails { title: string; description: string; subtitles: Subtitle[]; } export declare const getVideoDetails: ({ videoID, lang, }: Options) => Promise; export declare const getSubtitles: ({ videoID, lang, }: Options) => Promise; export {};