import { default as React } from 'react'; interface FileConfirmationDialogProps { open: boolean; onClose: () => void; onReplace: () => void; onKeepBoth: () => void; title?: string; } declare const FileConfirmationDialog: React.FC; export default FileConfirmationDialog;