import type * as Preserve from "@truffle/preserve"; import createIpfsHttpClient from "ipfs-http-client"; export declare type IpfsClient = ReturnType; export interface FileObject { path: string; content: Preserve.Targets.Normalized.Sources.Content; } export declare type IpfsAddAllResults = ReturnType; export interface IpfsGetResult { path: string; content?: AsyncIterable; } export declare type IpfsGetResults = AsyncIterable;