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