import { type MessageEncryptor } from ".."; export declare class Nip4WebCryptoEncryptor implements MessageEncryptor { #private; readonly privKey: string; readonly pubKey: string; constructor(privKey: string, pubKey: string); getSharedSecret(privateKey: string, publicKey: string): Uint8Array; encryptData(content: string): Promise; decryptData(payload: string): Promise; } //# sourceMappingURL=nip4.d.ts.map