declare class OtpServiceController { constructor(); encrypt(rawmsg: string, rawkey: string): string; decrypt(msg: string, rawkey: string): string; } export declare const OtpService: OtpServiceController; export {};