import { FacebookBaseAction } from '../facebook-base.action.js';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Retrieves detailed insights and analytics for a specific Facebook post.
 * Provides metrics like reach, impressions, engagement, and more.
 */
export declare class FacebookGetPostInsightsAction 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 default post metrics based on post type
     */
    private getDefaultPostMetrics;
    /**
     * Get demographic insights for a post
     */
    private getPostDemographics;
    /**
     * Process raw insights into a more usable format
     */
    private processInsights;
}
//# sourceMappingURL=get-post-insights.action.d.ts.map