import { ExternalImporterConfig } from './ipfs/external-importer-config'; export interface IPFS_MODULE_MAP { hash: string; module: ExternalImporterConfig; } export declare class IpfsHashMapService { hashMap: IPFS_MODULE_MAP[]; writeHashMapToFile(): Promise; readHashMap(): Promise; find(hash: string): IPFS_MODULE_MAP; remove(hash: string): void; }