import { UserV2, UserV2TimelineParams, UserV2TimelineResult } from '../types'; import { TimelineV2Paginator } from './v2.paginator'; /** A generic PreviousableTwitterPaginator able to consume UserV2 timelines. */ declare abstract class UserTimelineV2Paginator extends TimelineV2Paginator { protected getItemArray(): UserV2[]; /** * Users returned by paginator. */ get users(): UserV2[]; get meta(): TResult["meta"]; } export declare class UserBlockingUsersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class UserMutingUsersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class UserFollowersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class UserFollowingV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class UserListMembersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class UserListFollowersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class TweetLikingUsersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export declare class TweetRetweetersUsersV2Paginator extends UserTimelineV2Paginator { protected _endpoint: string; } export {};