import React from 'react';
import { type ProfileClient, type RovoAgentProfileCardInfo } from '../../types';
type AgentActionsProps = {
    agent: RovoAgentProfileCardInfo;
    onEditAgent: () => void;
    onCopyAgent: () => void;
    onDuplicateAgent: () => void;
    onDeleteAgent: () => void;
    onChatClick: (event: React.MouseEvent) => void;
    onViewFullProfileClick: () => void;
    resourceClient: ProfileClient;
    hideMoreActions?: boolean;
};
export declare const AgentActions: ({ onEditAgent, onDeleteAgent, onDuplicateAgent, onCopyAgent, onChatClick, onViewFullProfileClick, agent, resourceClient, hideMoreActions, }: AgentActionsProps) => React.JSX.Element;
export {};
