import { ReactElement } from 'react'; import './DriveItem.scss'; import { PostageBatch } from '@ethersphere/bee-js'; import { DriveInfo } from '@solarpunkltd/file-manager-lib'; interface DriveItemProps { drive: DriveInfo; stamp: PostageBatch; isSelected: boolean; setErrorMessage?: (error: string) => void; } export declare function DriveItem({ drive, stamp, isSelected, setErrorMessage }: DriveItemProps): ReactElement; export {};