declare class NextCrypto { constructor(secret: string); async encrypt(plain: string): Promise; async decrypt(encrypted: string): Promise; } export default NextCrypto;