import { ReactElement } from 'react'; import './UpgradeDriveModal.scss'; import '../../styles/global.scss'; import { PostageBatch } from '@ethersphere/bee-js'; import { DriveInfo } from '@solarpunkltd/file-manager-lib'; interface UpgradeDriveModalProps { stamp: PostageBatch; drive: DriveInfo; onCancelClick: () => void; containerColor?: string; setErrorMessage?: (error: string) => void; } export declare function UpgradeDriveModal({ stamp, onCancelClick, containerColor, drive, setErrorMessage, }: UpgradeDriveModalProps): ReactElement; export {};