import type z from 'zod'; export declare class CryptoUtils { static encrypt(data: string, publicKeyBase58: string): string; static decrypt(encryptedData: string, privateKey: Uint8Array): string; static decryptTyped(encryptedData: string, privateKey: Uint8Array, zodSchema: S): z.infer; } //# sourceMappingURL=crypto-utils.d.ts.map