/*! * Copyright (c) 2015-2023 Cisco Systems, Inc. See LICENSE file. */ declare class WebinarCollection { webinarInfo: any; namespace: string; mainIndex: string; constructor(); set(id: any, info: any): void; /** * @param {String} id * @returns {Member} */ get(id: string): any; } export default WebinarCollection;