@atlaskit/profilecard
Version:
A React component to display a card with user information.
16 lines (15 loc) • 686 B
TypeScript
import React from 'react';
import { type ProfileClient, type RovoAgentProfileCardInfo } from '../../types';
type AgentActionsProps = {
agent: RovoAgentProfileCardInfo;
isAgentCreatedByCurrentUser?: boolean;
onEditAgent: () => void;
onCopyAgent: () => void;
onDuplicateAgent: () => void;
onDeleteAgent: () => void;
onChatClick: () => void;
onViewFullProfileClick: () => void;
resourceClient: ProfileClient;
};
export declare const AgentActions: ({ isAgentCreatedByCurrentUser, onEditAgent, onDeleteAgent, onDuplicateAgent, onCopyAgent, onChatClick, onViewFullProfileClick, agent, resourceClient, }: AgentActionsProps) => React.JSX.Element;
export {};