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 {};