import { BufferBaseAction } from '../buffer-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
 * Action to get all Buffer profiles (social media accounts) for the authenticated user
 */
export declare class BufferGetProfilesAction extends BufferBaseAction {
    /**
     * Get Buffer profiles
     */
    protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
    /**
     * Group profiles by service
     */
    private groupByService;
    /**
     * Define the parameters this action expects
     */
    get Params(): ActionParam[];
    /**
     * Metadata about this action
     */
    get Description(): string;
}
//# sourceMappingURL=get-profiles.action.d.ts.map