import { HootSuiteBaseAction } from '../hootsuite-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to retrieve social profiles connected to HootSuite account
 */
export declare class HootSuiteGetSocialProfilesAction extends HootSuiteBaseAction {
    /**
     * Get social profiles from HootSuite
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Get additional details for a profile
     */
    private getProfileDetails;
    /**
     * Map social network ID to readable name
     */
    private mapSocialNetworkId;
    /**
     * Group profiles by network
     */
    private groupByNetwork;
    /**
     * Group profiles by type
     */
    private groupByType;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Get action description
     */
    get Description(): string;
}
//# sourceMappingURL=get-social-profiles.action.d.ts.map