import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js'; import type { CurrentUserResult, FollowingResult } from './twitter-client-types.js'; export interface TwitterClientUserMethods { getCurrentUser(): Promise; getFollowing(userId: string, count?: number, cursor?: string): Promise; getFollowers(userId: string, count?: number, cursor?: string): Promise; } export declare function withUsers>(Base: TBase): Mixin; //# sourceMappingURL=twitter-client-users.d.ts.map