import { OmniaContext } from "@omnia/fx"; import { Participant } from "../models"; import { PageId } from "@omnia/wcm/models"; export declare const BASE_URL = "api/participants"; export declare class ParticipantService { omniaContext: OmniaContext; private httpClient; constructor(); getParticipantByLoginNameOrEmail: (loginNameOrEmail: string, pageId: number) => Promise; getParticipants: (pageId: PageId) => Promise>; addOrUpdateParticipant: (participant: Participant) => Promise; deleteParticipant: (participant: Participant) => Promise; moveParticipantToStandbyList: (participant: Participant) => Promise; moveParticipantToOfficialList: (participant: Participant) => Promise; }