export declare const getSharedSecret: (privkey: string, pubkey: string) => Uint8Array; export declare function encrypt(key: Uint8Array, text: string, v?: number): string; export declare function decrypt(key: Uint8Array, payload: string): any;