import { TwitterBaseAction } from '../twitter-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to schedule a tweet for future posting on Twitter/X
 * Note: Twitter API v2 doesn't have native scheduling, so this action
 * saves the tweet data for later posting via a separate scheduler service
 */
export declare class TwitterScheduleTweetAction extends TwitterBaseAction {
    /**
     * Schedule a tweet for future posting
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Generate a unique ID for scheduled tweet
     */
    private generateScheduledTweetId;
    /**
     * Get error code based on error type
     */
    private getErrorCode;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Get action description
     */
    get Description(): string;
}
//# sourceMappingURL=schedule-tweet.action.d.ts.map