import { BufferBaseAction } from '../buffer-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to search historical posts in Buffer across profiles and date ranges
 */
export declare class BufferSearchPostsAction extends BufferBaseAction {
    /**
     * Search for posts in Buffer
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Generate statistics from search results
     */
    private generateSearchStatistics;
    /**
     * Find the top performing post by engagements
     */
    private findTopPerformingPost;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=search-posts.action.d.ts.map