@atlaskit/profilecard
Version:
A React component to display a card with user information.
16 lines (15 loc) • 685 B
TypeScript
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 {};