import type { AbstractConstructor, InstagramClientBase, Mixin } from './instagram-client-base.js'; import type { CurrentUserResult, UserResult, UsersResult } from './instagram-client-types.js'; export interface InstagramClientUserMethods { getCurrentUser(): Promise; getUser(username: string): Promise; getUserById(userId: string): Promise; getFollowing(userId: string, cursor?: string, count?: number): Promise; getFollowers(userId: string, cursor?: string, count?: number): Promise; } export declare function withUsers>(Base: TBase): Mixin; //# sourceMappingURL=instagram-client-users.d.ts.map