import { ReactElement } from 'react'; import '../../styles/global.scss'; import './DestroyDriveModal.scss'; import { DriveInfo } from '@solarpunkltd/file-manager-lib'; interface DestroyDriveModalProps { drive: DriveInfo; onCancelClick: () => void; doDestroy: () => void | Promise; } export declare function DestroyDriveModal({ drive, onCancelClick, doDestroy }: DestroyDriveModalProps): ReactElement; export {};