import { MultiKeypair } from "./types"; export declare const base58Encode: (publicKey: string) => string; export declare function ethGetEncryptionPublicKey(secret: string): string; export declare function ethEncrypt(message: string, receiverPubkey: string): string; export declare function ethDecrypt(encryptedMessage: string, secret: string): string; export declare function parseResult(output: string): string; export declare function updateKeyPair(keypair: MultiKeypair): { sk: string; seed: string; pk: string; party_ind: number; threshold: number; share_count: number; aux: object; };