import { ApiClientFactory } from '../core/api.client.factory'; import { OrgidParams, ConditionFilter, VideoConferenceData, UpSetConference, InvitePersonList, ConferenceRecord, ConferenceRecordList, OrgTreeNodes } from '../model/videoConference.model'; export declare class VideoConferenceService { protected factory: ApiClientFactory; constructor(factory: ApiClientFactory); loadVideoConferenceOrgid(projectId: string): Promise; loadVideoConferenceOrgidSave(projectId: string, params: OrgidParams): Promise; loadVideoConferenceList(projectId: string, params: ConditionFilter): Promise; createOrEditVideoConference(projectId: string, params: UpSetConference): Promise; loadInvitePersonList(projectId: string, conferenceId: number, orgId: string): Promise; saveInvitePersonList(projectId: string, conferenceId: number, params: InvitePersonList): Promise; loadConferenceRecordList(projectId: string, conferenceId: number, personId: number): Promise; saveConferenceRecord(projectId: string, params: ConferenceRecord): Promise; deleteConferenceRecordList(projectId: string, conferenceRecordId: string): Promise; deleteConference(projectId: string, conferenceId: number, personId: number): Promise; loadOrgTree(projectId: string): Promise; }