UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

11 lines (10 loc) 305 B
import React from 'react'; type Props = { isOpen: boolean; onClose: () => void; onSubmit: () => void; agentId: string; agentName: string; }; export declare const AgentDeleteConfirmationModal: ({ onClose, agentName, isOpen, onSubmit, agentId, }: Props) => React.JSX.Element; export {};