import React from 'react'; export interface ConfirmationModalProps { visible: boolean; title: string; message: string; confirmText?: string; cancelText?: string; isDestructive?: boolean; icon?: 'trash' | 'alert' | 'reset' | 'info'; onConfirm: () => void; onCancel: () => void; } export declare const ConfirmationModal: React.FC;