import { TwitterBaseAction } from '../twitter-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get mentions (tweets that mention the authenticated user) from Twitter/X
 */
export declare class TwitterGetMentionsAction extends TwitterBaseAction {
    /**
     * Get mentions 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-mentions.action.d.ts.map