import type { BinaryLike } from "./types";
export declare function encrypt(encryptionKey: BinaryLike): (text: string) => string;
export declare function decrypt(encryptionKey: BinaryLike): (encrypted_string: string) => string;
