import { ReactElement } from 'react'; import './UploadConflictModal.scss'; import '../../styles/global.scss'; interface Props { filename: string; suggestedName: string; existingNames: Set; isTrashedExisting?: boolean; onKeepBoth: (newName: string) => void; onReplace: () => void; onCancel: () => void; } export declare function UploadConflictModal({ filename, suggestedName, existingNames, isTrashedExisting, onKeepBoth, onReplace, onCancel, }: Props): ReactElement; export {};