declare function generateKeyPair(): Promise<{ publicKey: string; privateKey: string; }>; declare function encrypt(publicKey: CryptoKey | string, data: string): Promise; declare function decrypt(privateKey: CryptoKey | string, encryptedData: string): Promise; declare const _default: { generateKeyPair: typeof generateKeyPair; encrypt: typeof encrypt; decrypt: typeof decrypt; }; export default _default; //# sourceMappingURL=index.d.ts.map