import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js'; import type { TweetResult } from './twitter-client-types.js'; export interface TwitterClientPostingMethods { tweet(text: string, mediaIds?: string[]): Promise; reply(text: string, replyToTweetId: string, mediaIds?: string[]): Promise; } export declare function withPosting>(Base: TBase): Mixin; //# sourceMappingURL=twitter-client-posting.d.ts.map