import { HootSuiteBaseAction, HootSuitePost } from '../hootsuite-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
import { SocialPost } from '../../../base/base-social.action';
/**
 * Action to retrieve scheduled posts from HootSuite
 */
export declare class HootSuiteGetScheduledPostsAction extends HootSuiteBaseAction {
    /**
     * Get scheduled posts from HootSuite
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Convert HootSuite post to common format
     */
    protected normalizePost(hootsuitePost: HootSuitePost): SocialPost;
    /**
     * Get analytics for a specific post
     */
    private getPostAnalytics;
    /**
     * Group posts by profile
     */
    private groupByProfile;
    /**
     * Group posts by scheduled date
     */
    private groupByDate;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Get action description
     */
    get Description(): string;
}
//# sourceMappingURL=get-scheduled-posts.action.d.ts.map