import React from 'react'; export interface ConfirmModalProps { title: string; body: string; onConfirm: (reason?: string) => void; onCancel: () => void; reasonInput?: { label: string; placeholder?: string; }; } export declare function ConfirmModal({ title, body, onConfirm, onCancel, reasonInput, }: ConfirmModalProps): React.JSX.Element;