import { TwitterBaseAction } from '../twitter-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get timeline tweets (home timeline or user timeline) from Twitter/X
 */
export declare class TwitterGetTimelineAction extends TwitterBaseAction {
    /**
     * Get timeline tweets from Twitter
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * 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=get-timeline.action.d.ts.map