import { Feed } from '../core/feed'; import { MediaCommentsFeedResponse, MediaCommentsFeedResponseCommentsItem } from '../responses/'; export declare class MediaCommentsFeed extends Feed { id: string; moreAvailable: boolean; comments: any[]; numberOfPagesToFetch: number; defaultThrottleMs: number; currentPage: number; private nextMaxId; state: MediaCommentsFeedResponse; request(): Promise; items(): Promise; fetchAllComments(options: any): Promise; fetchBatchOfComments(callback: any): Promise; }