import { TConfig, TProfile, TLastPosts, TPost } from '../entities/types.js'; declare class InstagramApiService { private request; private proxy; constructor(config: TConfig); getProfile(username: string): Promise; getLastPosts(username: string): Promise; getPost(postUrl: string): Promise; } export { InstagramApiService as Instagrapi };