import { FacebookBaseAction } from '../facebook-base.action.js';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Retrieves posts from a Facebook page with optional date filtering.
 * Includes post content, media, and basic engagement metrics.
 */
export declare class FacebookGetPagePostsAction extends FacebookBaseAction {
    /**
     * Get action description
     */
    get Description(): string;
    /**
     * Define the parameters for this action
     */
    get Params(): ActionParam[];
    /**
     * Execute the action
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Get post fields without insights (for faster queries or when insights not available)
     */
    private getPostFieldsWithoutInsights;
    /**
     * Categorize posts by type based on attachments
     */
    private categorizePostTypes;
}
//# sourceMappingURL=get-page-posts.action.d.ts.map