import { HTMLElement } from "node-html-parser"; import IUserService from "../interfaces/IUserService"; import IPostService from "../interfaces/IPostService"; import IDownloadService from "../interfaces/IDownloadService"; declare class InstagramService { dom: HTMLElement; userService: IUserService; postService: IPostService; downloadService: IDownloadService; constructor(); getUserData(username: string): Promise; bootServices(): void; } export default InstagramService;