import { type Options } from 'ipfs-http-client'; export type IpfsConfig = { download: string; api: Options; }; export declare class Ipfs { private readonly config; private readonly client; constructor(config: IpfsConfig); upload(file: string): Promise; bulkUpload(files: string[]): Promise>; private singleUpload; } //# sourceMappingURL=ipfs.d.ts.map