import { ReactElement } from 'react'; import './CreateDriveModal.scss'; interface CreateDriveModalProps { onCancelClick: () => void; onDriveCreated: () => void; onCreationStarted: () => void; onCreationError: (name: string) => void; } export declare function CreateDriveModal({ onCancelClick, onDriveCreated, onCreationStarted, onCreationError, }: CreateDriveModalProps): ReactElement; export {};