import type { IdentityKeys, Signer } from './types.js'; export declare const encryptIdentity: (signer: Signer, accountAddress: string, keys: IdentityKeys) => Promise<{ ciphertext: string; nonce: string; }>; export declare const decryptIdentity: (signer: Signer, accountAddress: string, ciphertext: string, nonce: string) => Promise; //# sourceMappingURL=identity-encryption.d.ts.map