import { Client } from "@lumeweb/libkernel-universal"; interface AbortableGenerator { abort: () => void; iterable: AsyncGenerator; } export declare class IPFSClient extends Client { ready(): Promise; stat(cid: string): Promise; ls(cid: string): AbortableGenerator; cat(cid: string): AbortableGenerator; ipns(cid: string): Promise; activePeers(): Promise; private connectModuleGenerator; } export declare const createClient: (...args: any) => IPFSClient; export {}; //# sourceMappingURL=index.d.ts.map