export type EncryptedPayload = {
    payload: Uint8Array;
    iv: Uint8Array;
    keyIndex: number;
};
export type EncryptionProvider = {
    encrypt(payload: Uint8Array): EncryptedPayload;
};
export type DecryptionProvider = {
    decrypt(payload: Uint8Array, senderIdentity: string): Uint8Array;
};
//# sourceMappingURL=e2ee.d.ts.map
