import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js'; import type { FollowMutationResult } from './twitter-client-types.js'; export interface TwitterClientFollowMethods { follow(userId: string): Promise; unfollow(userId: string): Promise; } export declare function withFollow>(Base: TBase): Mixin; //# sourceMappingURL=twitter-client-follow.d.ts.map