import { HubSpotBaseAction } from '../hubspot-base.action.js';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get activity history for a contact in HubSpot
 */
export declare class GetActivitiesByContactAction extends HubSpotBaseAction {
    /**
     * Get activity history for a specific contact
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Extract subject from engagement based on type
     */
    private getEngagementSubject;
    /**
     * Extract body from engagement based on type
     */
    private getEngagementBody;
    /**
     * Group activities by type
     */
    private groupActivitiesByType;
    /**
     * Group activities by status
     */
    private groupActivitiesByStatus;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=get-activities-by-contact.action.d.ts.map