declare class Encryptor { encrypt(key: string, text: string): string; decrypt(key: string, text: string): string; } export declare const encryptor: Encryptor; export {};