import { BatchId, Bee, Reference } from '@ethersphere/bee-js'; import { Wallet } from 'ethers'; import { Identity, IdentityType } from '../providers/Feeds'; export declare function generateWallet(): Wallet; export declare function persistIdentity(identities: Identity[], identity: Identity): void; export declare function persistIdentitiesWithoutUpdate(identities: Identity[]): void; export declare function convertWalletToIdentity(identity: Wallet, type: IdentityType, name: string, password?: string): Promise; export declare function importIdentity(name: string, data: string): Promise; export declare function updateFeed(beeApi: Bee, identity: Identity, hash: Reference | string, stamp: BatchId | string, password?: string): Promise;