import { BufferBaseAction } from '../buffer-base.action.js';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Analytics retrieval for Buffer posts.
 *
 * NOTE: Buffer's GraphQL API (https://developers.buffer.com) does not
 * currently expose analytics or engagement metrics. This action returns
 * a clear error until the API adds support. The old v1 REST endpoint
 * (GET /updates/{id}/interactions.json) no longer accepts new API keys.
 */
export declare class BufferGetAnalyticsAction extends BufferBaseAction {
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    get Params(): ActionParam[];
    get Description(): string;
}
//# sourceMappingURL=get-analytics.action.d.ts.map