import { CryptoEngine } from '@cyklang/core'; export declare class JSCrypto implements CryptoEngine { encrypt(plain: string): Promise; decrypt(encoded: string): Promise; private wordArrayToUint8Array; }