interface AddOptions { arweaveUploadApi?: string; arweaveGateway?: string; } declare const add: (content: Uint8Array, { arweaveGateway, arweaveUploadApi }?: AddOptions) => Promise; export { add };