declare class Instagram { #private; url: string; constructor(url: string); extractVideos(): Promise<{ url: any; }[]>; static download(videoUrl: string): Promise; } declare class LinkedIn { #private; url: string; constructor(url: string); extractVideos(): Promise; static download(videoUrl: string): Promise; } declare class Youtube { url: string; constructor(url: string); extractVideos(): Promise; static download(videoUrl: string): Promise; } export { Instagram, LinkedIn as Linkedin, Youtube };