/** * This module integrates {@link E2EEContext} with {external} in order to set the keys for encryption. */ export class ExternallyManagedKeyHandler extends KeyHandler { /** * Build a new ExternallyManagedKeyHandler instance, which will be used in a given conference. * @param conference - the current conference. */ constructor(conference: any); /** * Sets the key and index for End-to-End encryption. * * @param {CryptoKey} [keyInfo.encryptionKey] - encryption key. * @param {Number} [keyInfo.index] - the index of the encryption key. * @returns {void} */ setKey(keyInfo: any): void; } import { KeyHandler } from "./KeyHandler";