import { MeetingStartRequest } from ".."; import { CommunicationHandler } from "../inter-communication-handler/CommunicationHandler"; export declare abstract class Base { protected meetingStartRequest?: MeetingStartRequest; protected communicationHandler?: CommunicationHandler; constructor(_meetingStartRequest: MeetingStartRequest, _communicationHandler: CommunicationHandler); setMeetingRequest: (_meetingStartRequest: MeetingStartRequest) => void; protected onObjectCreated(): void; cleanup(): void; }