import type { ReactElement } from 'react'; import { FileInfo, FileManagerBase } from '@solarpunkltd/file-manager-lib'; import { PostageBatch } from '@ethersphere/bee-js'; export declare type FileProperty = { key: string; label: string; value: string; raw?: string; }; export declare type FilePropertyGroup = { title: string; icon?: ReactElement; properties: FileProperty[]; }; export declare function getGranteeCount(fm: FileManagerBase, fi: FileInfo): Promise; export declare function buildGetInfoGroups(fm: FileManagerBase, fi: FileInfo, driveName: string, stamp?: PostageBatch): Promise;