import { YouTubeBaseAction } from '../youtube-base.action.js';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get comments from YouTube videos
 */
export declare class YouTubeGetCommentsAction extends YouTubeBaseAction {
    /**
     * Get comments from YouTube videos
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Process raw comment threads into a flat array
     */
    private processComments;
    /**
     * Calculate comment statistics
     */
    private calculateCommentStats;
    /**
     * Basic sentiment analysis (simplified)
     */
    private analyzeSentiment;
    /**
     * Get top commenters by frequency
     */
    private getTopCommenters;
    /**
     * Get error code from error message
     */
    private getErrorCode;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=get-comments.action.d.ts.map