import { BufferBaseAction } from '../buffer-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get pending (scheduled) posts from Buffer
 */
export declare class BufferGetPendingPostsAction extends BufferBaseAction {
    /**
     * Get pending posts from Buffer
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Group posts by scheduled day
     */
    private groupPostsByDay;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=get-pending-posts.action.d.ts.map