import type { IpfsUploadOptions } from './upload.js'; export type { IpfsUploadOptions } from './upload.js'; /** * Pin a deployment bundle (a `Blob`) to IPFS from the browser and return an * `ipfs://` URI. * * Browser-native counterpart of the Node `uploadScript`: uses `fetch` + the * browser `FormData`/`Blob` APIs instead of `axios` + `form-data` + `fs`. The * Pinata-style request shape (field name, `pinataOptions`, filename) is kept * identical so the same pinning endpoint works for both. */ export declare const uploadBlob: (blob: Blob, options: IpfsUploadOptions) => Promise; //# sourceMappingURL=upload.browser.d.ts.map